1132718Skan/* Set up combined include path for the preprocessor.
2169689Skan   Copyright (C) 2003, 2004, 2005, 2006 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
16169689SkanFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17132718Skan
18132718Skanextern void split_quote_chain (void);
19169689Skanextern void add_path (char *, int, int, bool);
20132718Skanextern void register_include_chains (cpp_reader *, const char *,
21169689Skan				     const char *, const char *,
22169689Skan				     int, int, int);
23169689Skanextern void add_cpp_dir_path (struct cpp_dir *, int);
24132718Skan
25169689Skanstruct target_c_incpath_s {
26169689Skan  /* Do extra includes processing.  STDINC is false iff -nostdinc was given.  */
27169689Skan  void (*extra_pre_includes) (const char *, const char *, int);
28169689Skan  void (*extra_includes) (const char *, const char *, int);
29169689Skan};
30169689Skan
31169689Skanextern struct target_c_incpath_s target_c_incpath;
32169689Skan
33132718Skanenum { QUOTE = 0, BRACKET, SYSTEM, AFTER };
34