Просмотр исходного кода

Move __PHYSFS_strdup() declaration up with other string helpers.

Ryan C. Gordon 10 лет назад
Родитель
Сommit
e608c5c3de
1 измененных файлов с 5 добавлено и 5 удалено
  1. 5 5
      src/physfs_internal.h

+ 5 - 5
src/physfs_internal.h

@@ -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