Finished action. On to testing.

This commit is contained in:
Meredith L. Patterson 2012-05-18 12:35:40 +02:00
parent b10a3d8ae9
commit 642df1f238
2 changed files with 25 additions and 1 deletions

View file

@ -36,6 +36,7 @@ typedef enum token_type {
TT_SINT,
TT_UINT,
TT_SEQUENCE,
TT_USER = 64,
TT_ERR,
TT_MAX
} token_type_t;
@ -59,6 +60,7 @@ typedef struct parsed_token {
double dbl;
float flt;
counted_array_t *seq; // a sequence of parsed_token_t's
void *user;
};
size_t index;
char bit_offset;