blob: 5435927d037b1143196a032d73811c65b35a902c [file] [log] [blame]
H. Peter Anvin74cc5e52007-08-30 22:35:34 +00001/* stdscan.h header file for stdscan.c
2 *
3 * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
4 * Julian Hall. All rights reserved. The software is
Beroset095e6a22007-12-29 09:44:23 -05005 * redistributable under the license given in the file "LICENSE"
H. Peter Anvin74cc5e52007-08-30 22:35:34 +00006 * distributed in the NASM archive.
7 */
8
9#ifndef NASM_STDSCAN_H
10#define NASM_STDSCAN_H
11/*
12 * Standard scanner.
13 */
14extern char *stdscan_bufptr;
15void stdscan_reset(void);
16int stdscan(void *private_data, struct tokenval *tv);
17int nasm_token_hash(const char *token, struct tokenval *tv);
18void stdscan_cleanup(void);
19
20#endif