H. Peter Anvin | 74cc5e5 | 2007-08-30 22:35:34 +0000 | [diff] [blame^] | 1 | /* 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 |
| 5 | * redistributable under the licence given in the file "Licence" |
| 6 | * distributed in the NASM archive. |
| 7 | */ |
| 8 | |
| 9 | #ifndef NASM_STDSCAN_H |
| 10 | #define NASM_STDSCAN_H |
| 11 | /* |
| 12 | * Standard scanner. |
| 13 | */ |
| 14 | extern char *stdscan_bufptr; |
| 15 | void stdscan_reset(void); |
| 16 | int stdscan(void *private_data, struct tokenval *tv); |
| 17 | int nasm_token_hash(const char *token, struct tokenval *tv); |
| 18 | void stdscan_cleanup(void); |
| 19 | |
| 20 | #endif |