Root/
| 1 | /* |
| 2 | * cpp.h - CPP subprocess |
| 3 | * |
| 4 | * Written 2002, 2003, 2008 by Werner Almesberger |
| 5 | * Copyright 2002, 2003 Caltech Netlab FAST project |
| 6 | * Copyright 2008 by OpenMoko, Inc. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | */ |
| 13 | |
| 14 | #ifndef CPP_H |
| 15 | #define CPP_H |
| 16 | |
| 17 | |
| 18 | extern const char *cpp_command; |
| 19 | |
| 20 | void add_cpp_arg(const char *arg); |
| 21 | void add_cpp_Wp(const char *arg); |
| 22 | void run_cpp_on_file(const char *name); /* NULL for stdin */ |
| 23 | void run_cpp_on_string(const char *str); |
| 24 | void reap_cpp(void); |
| 25 | |
| 26 | #endif /* CPP_H */ |
| 27 |
Branches:
master
