2 * Definitions of lexemes and tokens
4 * Copyright (C) 2018 Nicolas Mauger
5 * This file is subject to the terms and conditions of the
6 * CeCILL free software license agreement. See the file
7 * LICENSE in the main directory of T7 for more details.
10 #define EOI 0 /* end of input */
11 #define SEMI 1 /* ; */
12 #define PLUS 2 /* + */
13 #define TIMES 3 /* * */
16 #define NUM_OR_ID 6 /*number or identifier */