00001 /* Define constants for communication with c-parse.y. 00002 Copyright (C) 1987, 1992, 1998, 1999, 2000 Free Software Foundation, Inc. 00003 00004 This file is part of GCC. 00005 00006 GCC is free software; you can redistribute it and/or modify it under 00007 the terms of the GNU General Public License as published by the Free 00008 Software Foundation; either version 2, or (at your option) any later 00009 version. 00010 00011 GCC is distributed in the hope that it will be useful, but WITHOUT ANY 00012 WARRANTY; without even the implied warranty of MERCHANTABILITY or 00013 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 00014 for more details. 00015 00016 You should have received a copy of the GNU General Public License 00017 along with GCC; see the file COPYING. If not, write to the Free 00018 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 00019 02111-1307, USA. */ 00020 00021 #ifndef GCC_C_LEX_H 00022 #define GCC_C_LEX_H 00023 00024 extern tree make_pointer_declarator PARAMS ((tree, tree)); 00025 extern void position_after_white_space PARAMS ((void)); 00026 00027 extern int c_lex PARAMS ((tree *)); 00028 extern const char *init_c_lex PARAMS ((const char *)); 00029 00030 extern int indent_level; 00031 00032 struct cpp_reader; 00033 extern struct cpp_reader* parse_in; 00034 00035 #endif /* ! GCC_C_LEX_H */
1.5.6