diff options
author | Andrey Nazarov <skuller@skuller.net> | 2010-10-01 17:52:54 +0400 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2010-10-01 17:52:54 +0400 |
commit | f56136418650c1f26dc5f3161f7af29bcd8d6123 (patch) | |
tree | 68cb8732b94102ca1274c2083be0f8b6522e55c6 /src/files.h | |
parent | e3a2946e3793906c3f3018969872e392b07ba10f (diff) |
Renamed Com_HashPath into FS_HashPath.
Diffstat (limited to 'src/files.h')
-rw-r--r-- | src/files.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/files.h b/src/files.h index f3c7ff7..936b9c1 100644 --- a/src/files.h +++ b/src/files.h @@ -127,7 +127,11 @@ void **FS_CopyList( void **list, int count ); file_info_t *FS_CopyInfo( const char *name, size_t size, time_t ctime, time_t mtime ); void FS_FreeList( void **list ); -char *FS_ReplaceSeparators( char *s, int separator ); +unsigned FS_HashPath( const char *s, unsigned size ); + +#ifdef _WIN32 +char *FS_ReplaceSeparators( char *s, int separator ); +#endif int FS_pathcmp( const char *s1, const char *s2 ); int FS_pathcmpn( const char *s1, const char *s2, size_t n ); |