feat(string): add SStrToInt

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

View file

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