Update concepts branch to revision 131834
[official-gcc.git] / gcc / fortran / cpp.h
blob6f409cc45ee2e0769a0d1c5cd8b282596c3c9f7a
1 /* Copyright (C) 2008 Free Software Foundation, Inc.
3 This file is part of GCC.
5 GCC is free software; you can redistribute it and/or modify it under
6 the terms of the GNU General Public License as published by the Free
7 Software Foundation; either version 3, or (at your option) any later
8 version.
10 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
11 WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 for more details.
15 You should have received a copy of the GNU General Public License
16 along with GCC; see the file COPYING3. If not see
17 <http://www.gnu.org/licenses/>. */
19 #ifndef GFC_CPP_H
20 #define GFC_CPP_H
22 /* Returns true if preprocessing is enabled, false otherwise. */
23 bool gfc_cpp_enabled (void);
25 bool gfc_cpp_preprocess_only (void);
27 const char *gfc_cpp_temporary_file (void);
30 void gfc_cpp_init_0 (void);
31 void gfc_cpp_init (void);
33 void gfc_cpp_init_options (unsigned int argc, const char **argv);
35 int gfc_cpp_handle_option(size_t scode, const char *arg, int value);
37 void gfc_cpp_post_options (void);
39 try gfc_cpp_preprocess (const char *source_file);
41 void gfc_cpp_done (void);
43 void gfc_cpp_add_include_path (char *path, bool user_supplied);
45 void gfc_cpp_register_include_paths (void);
47 #endif /* GFC_CPP_H */