better error handliung

This commit is contained in:
Lobo 2026-01-21 11:29:54 -03:00
parent aebe586a05
commit f76c4f9af9
7 changed files with 80 additions and 43 deletions

View file

@ -29,6 +29,12 @@ typedef struct Hd {
U32 size, type;
} Hd;
/** String */
typedef struct Str {
Z len;
char data[];
} Str;
I type(O);
#endif