c-incpath.h revision 132718
1132718Skan/* Set up combined include path for the preprocessor.
2132718Skan   Copyright (C) 2003 Free Software Foundation, Inc.
3132718Skan
4132718SkanThis program is free software; you can redistribute it and/or modify it
5132718Skanunder the terms of the GNU General Public License as published by the
6132718SkanFree Software Foundation; either version 2, or (at your option) any
7132718Skanlater version.
8132718Skan
9132718SkanThis program is distributed in the hope that it will be useful,
10132718Skanbut WITHOUT ANY WARRANTY; without even the implied warranty of
11132718SkanMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12132718SkanGNU General Public License for more details.
13132718Skan
14132718SkanYou should have received a copy of the GNU General Public License
15132718Skanalong with this program; if not, write to the Free Software
16132718SkanFoundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
17132718Skan
18132718Skanextern void split_quote_chain (void);
19132718Skanextern void add_path (char *, int, int);
20132718Skanextern void register_include_chains (cpp_reader *, const char *,
21132718Skan				     const char *, int, int, int);
22132718Skan
23132718Skanenum { QUOTE = 0, BRACKET, SYSTEM, AFTER };
24