--- hatari/src/includes/file.h 2019/04/09 08:48:42 1.1.1.13 +++ hatari/src/includes/file.h 2019/04/09 08:53:15 1.1.1.15 @@ -1,8 +1,8 @@ /* Hatari - file.h - This file is distributed under the GNU Public License, version 2 or at - your option any later version. Read the file gpl.txt for details. + This file is distributed under the GNU General Public License, version 2 + or at your option any later version. Read the file gpl.txt for details. */ #ifndef HATARI_FILE_H @@ -12,13 +12,12 @@ extern void File_CleanFileName(char *psz extern void File_AddSlashToEndFileName(char *pszFileName); extern bool File_DoesFileExtensionMatch(const char *pszFileName, const char *pszExtension); extern const char *File_RemoveFileNameDrive(const char *pszFileName); -extern bool File_DirExists(const char *path); extern bool File_DoesFileNameEndWithSlash(char *pszFileName); extern Uint8 *File_Read(const char *pszFileName, long *pFileSize, const char * const ppszExts[]); extern bool File_Save(const char *pszFileName, const Uint8 *pAddress, size_t Size, bool bQueryOverwrite); extern off_t File_Length(const char *pszFileName); extern bool File_Exists(const char *pszFileName); -extern bool File_DirectoryExists(const char *psDirName); +extern bool File_DirExists(const char *psDirName); extern bool File_QueryOverwrite(const char *pszFileName); extern char* File_FindPossibleExtFileName(const char *pszFileName,const char * const ppszExts[]); extern void File_SplitPath(const char *pSrcFileName, char *pDir, char *pName, char *Ext);