feat(string): implement SStrToUnsigned

This commit is contained in:
phaneron 2024-12-24 14:08:06 -05:00
parent 22e9686d64
commit eb26539b33
3 changed files with 66 additions and 0 deletions

View file

@ -41,6 +41,8 @@ float SStrToFloat(const char* string);
int32_t SStrToInt(const char* string);
uint32_t SStrToUnsigned(const char* string);
void SStrUpper(char* string);
#endif