update build.lua and change char* to const char*

This commit is contained in:
tema5002
2026-05-23 19:52:35 +03:00
parent 6310ec69d2
commit d229116a8b
3 changed files with 32 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
#include "types.h"
int noom_startswith(const char* str, char* compare);
int noom_startswith(const char* str, const 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);