Move __PHYSFS_strdup() declaration up with other string helpers.
This commit is contained in:
parent
0278c30776
commit
e608c5c3de
|
@ -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);
|
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!
|
* 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);
|
int __PHYSFS_platformSetDefaultAllocator(PHYSFS_Allocator *a);
|
||||||
|
|
||||||
/*
|
|
||||||
* Like strdup(), but uses the current PhysicsFS allocator.
|
|
||||||
*/
|
|
||||||
char *__PHYSFS_strdup(const char *str);
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue