Kannel: Open Source WAP and SMS gateway
svn-r5336
|
Go to the source code of this file.
Functions | |
void * | gw_native_noop (void *ptr) |
void * | gw_native_malloc (size_t size) |
void * | gw_native_calloc (int nmemb, size_t size) |
void * | gw_native_realloc (void *ptr, size_t size) |
void | gw_native_free (void *ptr) |
char * | gw_native_strdup (const char *str) |
void* gw_native_calloc | ( | int | nmemb, |
size_t | size | ||
) |
Definition at line 94 of file gwmem-native.c.
References calloc, gw_assert(), panic, and size.
void gw_native_free | ( | void * | ptr | ) |
void* gw_native_malloc | ( | size_t | size | ) |
Definition at line 80 of file gwmem-native.c.
References gw_assert(), malloc(), panic, and size.
Referenced by gw_native_strdup().
void* gw_native_noop | ( | void * | ptr | ) |
Definition at line 78 of file gwmem-native.c.
void* gw_native_realloc | ( | void * | ptr, |
size_t | size | ||
) |
Definition at line 109 of file gwmem-native.c.
References gw_assert(), panic, realloc, and size.
char* gw_native_strdup | ( | const char * | str | ) |
Definition at line 129 of file gwmem-native.c.
References gw_assert(), gw_native_malloc(), and size.