Switch to using b32

This commit is contained in:
Abdelrahman Said
2025-09-14 21:25:56 +01:00
parent b4eb8d2760
commit b7eff6a3e4
31 changed files with 227 additions and 249 deletions

View File

@@ -7,7 +7,7 @@
typedef enum {
CTYPE_VOID,
CTYPE_BOOL,
CTYPE_B32,
CTYPE_CHAR,
CTYPE_C8,
CTYPE_C16,
@@ -30,7 +30,7 @@ typedef enum {
} CType;
internal Str8RO ctypes[COUNT_CTYPE] = {
[CTYPE_VOID] = wapp_str8_lit_ro("void"),
[CTYPE_BOOL] = wapp_str8_lit_ro("b32"),
[CTYPE_B32] = wapp_str8_lit_ro("b32"),
[CTYPE_CHAR] = wapp_str8_lit_ro("char"),
[CTYPE_C8] = wapp_str8_lit_ro("c8"),
[CTYPE_C16] = wapp_str8_lit_ro("c16"),