Added toLower/UpperUnsafe.

This commit is contained in:
Branimir Karadžić
2017-02-12 21:59:55 -08:00
parent d0443c4255
commit 0ecb9af21f
3 changed files with 23 additions and 9 deletions

View File

@@ -110,12 +110,18 @@ namespace bx
///
char toLower(char _ch);
///
void toLowerUnsafe(char* _inOutStr, size_t _len);
///
void toLower(char* _inOutStr, size_t _max = INT32_MAX);
///
char toUpper(char _ch);
///
void toUpperUnsafe(char* _inOutStr, size_t _len);
///
void toUpper(char* _inOutStr, size_t _max = INT32_MAX);