* langhooks-def.h (lhd_init_options, LANG_HOOKS_OPTION_LANG_MASK,
[official-gcc/alias-decl.git] / gcc / fortran / cpp.h
blobfa4383aefeb0f4224a2b8e85bb50aa7cff6df79c
1 /* Copyright (C) 2008, 2010 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 bool gfc_cpp_makedep (void);
29 void gfc_cpp_add_dep (const char *name, bool system);
31 void gfc_cpp_add_target (const char *name);
33 const char *gfc_cpp_temporary_file (void);
36 void gfc_cpp_init_0 (void);
37 void gfc_cpp_init (void);
39 void gfc_cpp_init_options (unsigned int decoded_options_count,
40 struct cl_decoded_option *decoded_options);
42 int gfc_cpp_handle_option(size_t scode, const char *arg, int value);
44 void gfc_cpp_post_options (void);
46 gfc_try gfc_cpp_preprocess (const char *source_file);
48 void gfc_cpp_done (void);
50 void gfc_cpp_add_include_path (char *path, bool user_supplied);
51 void gfc_cpp_add_include_path_after (char *path, bool user_supplied);
53 void gfc_cpp_register_include_paths (void);
55 #endif /* GFC_CPP_H */