1 /*
2   Input
3   Lex the input into tokens; what standard ITF/ZIP documents
4   call 'parsing'
5   JBS 15 June 1994
6 */
7 
8 #ifndef _INPUT_
9 
10 #define _INPUT_
11 
12 #include "types.h"
13 
14 void init_input(void);
15 void input(void);
16 word get_code(long_word *, word, word[]);
17 void parse(void);
18 
19 #endif
20