mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-18 04:53:06 +01:00
Added toLower/UpperUnsafe.
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user