about summary refs log tree commit diff stats
path: root/src/include/fileutils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/fileutils.h')
-rwxr-xr-xsrc/include/fileutils.h3
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