*
This commit is contained in:
parent
6a9a0cd4e4
commit
d359c68c32
16 changed files with 2026 additions and 89 deletions
|
|
@ -13,6 +13,7 @@
|
|||
enum {
|
||||
OBJ_FWD = 2,
|
||||
OBJ_QUOT,
|
||||
OBJ_STR,
|
||||
};
|
||||
|
||||
enum {
|
||||
|
|
@ -20,6 +21,7 @@ enum {
|
|||
TYPE_NUM = 1,
|
||||
TYPE_FWD = OBJ_FWD,
|
||||
TYPE_QUOT = OBJ_QUOT,
|
||||
TYPE_STR = OBJ_STR,
|
||||
};
|
||||
|
||||
typedef uintptr_t O;
|
||||
|
|
@ -29,12 +31,6 @@ typedef struct Hd {
|
|||
U32 size, type;
|
||||
} Hd;
|
||||
|
||||
/** String */
|
||||
typedef struct Str {
|
||||
Z len;
|
||||
char data[];
|
||||
} Str;
|
||||
|
||||
I type(O);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue