This commit is contained in:
2025-11-14 22:42:24 +01:00
parent 609ee13e23
commit c1f05d604f
2 changed files with 147 additions and 42 deletions

View File

@@ -8,7 +8,7 @@ typedef struct s8_slice {
int64_t len;
} S8Slice;
#define S8(str) (S8Slice) { \
#define S(str) (S8Slice) { \
.data = (uint8_t*)("" str), \
.len = sizeof(str)-1, \
}