diff options
Diffstat (limited to 'src/include/fileutils.h')
| -rw-r--r-- | src/include/fileutils.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/include/fileutils.h b/src/include/fileutils.h index 858c6324..855eb8ff 100644 --- a/src/include/fileutils.h +++ b/src/include/fileutils.h @@ -3,13 +3,6 @@ #include "pathcoll.h" -#define IS_EXECUTABLE (1<<0) -#define IS_FILE (1<<1) - - -// 0 : doesn't exist, 1: Does exist -int FileExist(const char* filename, int flags); - // find a file, using Path if needed, resolving symlinks char* ResolveFile(const char* filename, path_collection_t* paths); // find a file, using Path if needed, NOT resolving symlinks @@ -23,9 +16,6 @@ int FileIsShell(const char* filename); // return temp folder (will return /tmp if nothing is correct) const char* GetTmpDir(void); -// 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(void); #endif |