add str.split

This commit is contained in:
suchmememanyskill
2021-07-25 21:39:45 +02:00
parent db3ba94b5a
commit 6ecf8daef7
2 changed files with 27 additions and 1 deletions

View File

@@ -12,4 +12,5 @@ typedef struct {
void exitStaticVars(Vector_t* v);
void exitFunction(Operator_t* start, u32 len);
ParserRet_t parseScript(char* in, u32 len);
ParserRet_t parseScript(char* in, u32 len);
char* utils_copyStringSize(const char* in, int size);