parser start, no clue if i'm doing it right

This commit is contained in:
2026-04-13 08:19:17 +02:00
parent 348c0201de
commit 1b1d6e78d5
5 changed files with 148 additions and 1 deletions

View File

@@ -2,3 +2,7 @@
int noom_startswith(const char* str, char* compare);
int noom_streql(const char* stra, noom_uint_t lena, const char* strb, noom_uint_t lenb); // rename to something better?
void* noom_alloc(noom_uint_t size);
void noom_free(void* ptr);
void* noom_realloc(void* ptr, noom_uint_t size);