Move __PHYSFS_strdup() declaration up with other string helpers.

This commit is contained in:
Ryan C. Gordon 2016-02-25 00:40:17 -05:00
parent 0278c30776
commit e608c5c3de
1 changed files with 5 additions and 5 deletions

View File

@ -247,6 +247,11 @@ int __PHYSFS_stricmpASCII(const char *s1, const char *s2);
*/
int __PHYSFS_strnicmpASCII(const char *s1, const char *s2, PHYSFS_uint32 l);
/*
* Like strdup(), but uses the current PhysicsFS allocator.
*/
char *__PHYSFS_strdup(const char *str);
/*
* The current allocator. Not valid before PHYSFS_init is called!
@ -631,11 +636,6 @@ void __PHYSFS_platformReleaseMutex(void *mutex);
*/
int __PHYSFS_platformSetDefaultAllocator(PHYSFS_Allocator *a);
/*
* Like strdup(), but uses the current PhysicsFS allocator.
*/
char *__PHYSFS_strdup(const char *str);
#ifdef __cplusplus
}
#endif