Functions | |
void * | dcpl_malloc (size_t size) |
Memory allocation function provided by the platform. | |
void | dcpl_free (void *ptr) |
Memory liberation function provided by the platform. | |
char * | dcpl_strdup (const char *s) |
Creates a "copy" string buffer. |
void* dcpl_malloc | ( | size_t | size | ) |
Memory allocation function provided by the platform.
size | The required memory space. |
void dcpl_free | ( | void * | ptr | ) |
Memory liberation function provided by the platform.
ptr | The buffer to free. |
char* dcpl_strdup | ( | const char * | s | ) |
Creates a "copy" string buffer.
s | The original string to copy. |