FreeCalypso > hg > ueda-linux
comparison ueda/libuschem/parserint.h @ 0:cd92449fdb51
initial import of ueda and ifctf-part-lib from ifctfvax CVS
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Mon, 20 Jul 2015 00:24:37 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:cd92449fdb51 |
---|---|
1 /* | |
2 * These data structures are internal to the schematic reading/parsing process | |
3 * and persist only while that operation is in progress. | |
4 */ | |
5 | |
6 /* tokens */ | |
7 #define STRING 256 | |
8 #define QSTRING 257 | |
9 | |
10 #define MAXSTRING 63 | |
11 | |
12 struct schem_parse_state { | |
13 FILE *file; | |
14 int lineno; | |
15 struct schem *schem; | |
16 char string[MAXSTRING+1]; | |
17 int pushback_token; | |
18 }; | |
19 | |
20 struct xypair { | |
21 int x; | |
22 int y; | |
23 }; |