feat(string): add SStrTokenize

This commit is contained in:
fallenoak 2020-11-21 20:44:37 -06:00
parent a56c0c6fe0
commit d9e7f05c15
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
3 changed files with 120 additions and 0 deletions

View file

@ -29,6 +29,8 @@ uint32_t SStrPack(char* dest, const char* source, uint32_t destsize);
const char* SStrStr(const char* string, const char* search);
void SStrTokenize(const char** string, char* buffer, size_t bufferchars, const char* whitespace, int32_t* quoted);
float SStrToFloat(const char* string);
int32_t SStrToInt(const char* string);