mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
feat(string): implement SStrToUnsigned
This commit is contained in:
parent
22e9686d64
commit
eb26539b33
3 changed files with 66 additions and 0 deletions
|
|
@ -669,6 +669,20 @@ int32_t SStrToInt(const char* string) {
|
|||
return result;
|
||||
}
|
||||
|
||||
uint32_t SStrToUnsigned(const char* string) {
|
||||
STORM_ASSERT(string);
|
||||
|
||||
uint32_t result = 0;
|
||||
|
||||
uint32_t digit;
|
||||
while ((digit = *string - '0') < 10) {
|
||||
result = digit + (10 * result);
|
||||
string++;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
void SStrUpper(char* string) {
|
||||
while (*string) {
|
||||
*string = static_cast<char>(toupper(*string));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue