diff options
Diffstat (limited to 'src/prc1/td.h')
| -rw-r--r-- | src/prc1/td.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/prc1/td.h b/src/prc1/td.h new file mode 100644 index 0000000..2e23348 --- /dev/null +++ b/src/prc1/td.h @@ -0,0 +1,22 @@ +#ifndef TD_H +#define TD_H + +#include "lex.h" +#include "parse.h" +#include "prv.h" + +struct tdconstant +{ + int neg; + + union + { + unsigned long long uv; + long long v; + } u; +}; + +int td(const struct lex *l, struct prv *prv); +void td_free(struct td *td); + +#endif |
