[project @ 1996-01-08 20:28:12 by partain]
[ghc-hetmet.git] / ghc / compiler / yaccParser / id.h
1 #ifndef ID_H
2 #define ID_H
3
4 typedef char *id;
5 typedef id unkId;       /* synonym */
6 typedef id stringId;    /* synonym */
7 typedef id numId;       /* synonym, for now */
8
9 typedef struct { long len; char *bytes; } Hstring;
10 typedef Hstring *hstring;
11
12 long  get_hstring_len  PROTO((hstring));
13 char *get_hstring_bytes PROTO((hstring));
14
15 #endif