This commit is contained in:
Lobo 2026-01-21 13:48:20 -03:00
parent 6a9a0cd4e4
commit d359c68c32
16 changed files with 2026 additions and 89 deletions

View file

@ -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