1 /* preproc.h header file for preproc.c
3 * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
4 * Julian Hall. All rights reserved. The software is
5 * redistributable under the licence given in the file "Licence"
6 * distributed in the NASM archive.
10 #define NASM_PREPROC_H
12 void pp_include_path(int8_t *);
13 int8_t **pp_get_include_path_ptr(int8_t **pPrevPath
);
14 void pp_pre_include(int8_t *);
15 void pp_pre_define(int8_t *);
16 void pp_pre_undefine(int8_t *);
17 void pp_runtime(int8_t *);
18 void pp_extra_stdmac(const int8_t **);
20 extern Preproc nasmpp
;