blob: 0d54919f78540e9d99ad456218a08957da57580e [file] [log] [blame]
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001/* preproc.h header file for preproc.c
2 *
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.
7 */
8
9#ifndef NASM_PREPROC_H
10#define NASM_PREPROC_H
11
Keith Kaniosb7a89542007-04-12 02:40:54 +000012void pp_include_path(int8_t *);
13int8_t **pp_get_include_path_ptr(int8_t **pPrevPath);
14void pp_pre_include(int8_t *);
15void pp_pre_define(int8_t *);
16void pp_pre_undefine(int8_t *);
17void pp_runtime(int8_t *);
18void pp_extra_stdmac(const int8_t **);
H. Peter Anvin6768eb72002-04-30 20:52:26 +000019
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000020extern Preproc nasmpp;
21
22#endif