feat(string): add SStrToFloat

This commit is contained in:
fallenoak 2020-11-21 14:05:13 -06:00
parent 3d59699e1b
commit 28d60b4c4a
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
3 changed files with 203 additions and 0 deletions

View file

@ -27,6 +27,8 @@ void SStrLower(char* string);
const char* SStrStr(const char* string, const char* search);
float SStrToFloat(const char* string);
int32_t SStrToInt(const char* string);
#endif