Change Str8Node to use Str8 instead of Str8RO

This commit is contained in:
2025-02-15 20:36:31 +00:00
parent d635e03cd8
commit 241edfc7e4
2 changed files with 34 additions and 34 deletions

View File

@@ -21,7 +21,7 @@ typedef const Str8 Str8RO;
typedef struct str8_node Str8Node;
struct str8_node {
Str8RO *string;
Str8 *string;
Str8Node *prev;
Str8Node *next;
};