git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7809
d7cf8633-e32d-0410-b094-
e92efae38249
}
+char* Mem_strdup (mempool_t *pool, const char* s)
+{
+ char* p;
+ if (s == NULL) return NULL;
+ p = (char*)Mem_Alloc (pool, strlen (s) + 1);
+ strcpy (p, s);
+ return p;
+}
+
/*
========================
Memory_Init
// if pool is NULL this searches ALL pools for the allocation
qboolean Mem_IsAllocated(mempool_t *pool, void *data);
-static char* Mem_strdup (mempool_t *pool, const char* s)
-{
- char* p;
- if (s == NULL) return NULL;
- p = (char*)Mem_Alloc (pool, strlen (s) + 1);
- strcpy (p, s);
- return p;
-}
+char* Mem_strdup (mempool_t *pool, const char* s);
typedef struct memexpandablearray_array_s
{