Skip to content
Snippets Groups Projects
Commit cb504e23 authored by bunnei's avatar bunnei
Browse files

added helper functions for upper/lowercase strings

parent 18766b9e
No related branches found
No related tags found
No related merge requests found
...@@ -17,6 +17,22 @@ ...@@ -17,6 +17,22 @@
#include <errno.h> #include <errno.h>
#endif #endif
/// Make a string lowercase
void LowerStr(char* str) {
for (int i = 0; str[i]; i++) {
str[i] = tolower(str[ i ]);
}
}
/// Make a string uppercase
void UpperStr(char* str) {
for (int i=0; i < strlen(str); i++) {
if(str[i] >= 'a' && str[i] <= 'z') {
str[i] &= 0xDF;
}
}
}
// faster than sscanf // faster than sscanf
bool AsciiToHex(const char* _szValue, u32& result) bool AsciiToHex(const char* _szValue, u32& result)
{ {
......
...@@ -14,6 +14,12 @@ ...@@ -14,6 +14,12 @@
#include "common/common.h" #include "common/common.h"
/// Make a string lowercase
void LowerStr(char* str);
/// Make a string uppercase
void UpperStr(char* str);
std::string StringFromFormat(const char* format, ...); std::string StringFromFormat(const char* format, ...);
// Cheap! // Cheap!
bool CharArrayFromFormatV(char* out, int outsize, const char* format, va_list args); bool CharArrayFromFormatV(char* out, int outsize, const char* format, va_list args);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment