diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-11-27 18:50:47 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2022-11-27 18:50:47 +0100 |
| commit | 06851f8b984574cd1532191feca9765ea07904c0 (patch) | |
| tree | f389096a5bab95f8d4b7cd2be3595d7fac0cd45f /src/include/fileutils.h | |
| parent | 893fc7c9402dac4bd8c1dd2cbdd42752c59012bd (diff) | |
| download | box64-06851f8b984574cd1532191feca9765ea07904c0.tar.gz box64-06851f8b984574cd1532191feca9765ea07904c0.zip | |
Added box64rc configuration file handling
Diffstat (limited to 'src/include/fileutils.h')
| -rwxr-xr-x | src/include/fileutils.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/fileutils.h b/src/include/fileutils.h index ff69e6da..c666f0be 100755 --- a/src/include/fileutils.h +++ b/src/include/fileutils.h @@ -21,6 +21,9 @@ int FileIsShell(const char* filename); // return temp folder (will return /tmp if nothing is correct) const char* GetTmpDir(); +// will lower case the string and return a copy. Nothing fancy here, just A..Z transformed to a..z, rest is untouched +char* LowerCase(const char* s); + #if defined(RPI) || defined(RK3399) || defined(RK3326) void sanitize_mojosetup_gtk_background(); #endif |