feat(str): add SStrToDouble

This commit is contained in:
Adam Heinermann 2025-08-31 16:40:16 -07:00 committed by fallenoak
parent 2408166d5d
commit 75dc4e57a6
3 changed files with 189 additions and 0 deletions

View file

@ -37,6 +37,8 @@ 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);
double SStrToDouble(const char* string);
float SStrToFloat(const char* string);
int32_t SStrToInt(const char* string);