cpp.h 705 B

123456789101112131415161718192021222324252627
  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. #ifndef CPP_H
  14. #define CPP_H
  15. extern const char *cpp_command;
  16. void add_cpp_arg(const char *arg);
  17. void add_cpp_Wp(const char *arg);
  18. void run_cpp_on_file(const char *name); /* NULL for stdin */
  19. void run_cpp_on_string(const char *str);
  20. void reap_cpp(void);
  21. #endif /* CPP_H */