mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 23:58:17 -05:00
added helper functions for upper/lowercase strings
This commit is contained in:
@ -14,6 +14,12 @@
|
||||
|
||||
#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, ...);
|
||||
// Cheap!
|
||||
bool CharArrayFromFormatV(char* out, int outsize, const char* format, va_list args);
|
||||
|
Reference in New Issue
Block a user