SharedMeatAxe
1.0
|
A dynamic string. More...
#include <meataxe.h>
Data Fields | |
char * | S |
pointer to NUL terminated string | |
A dynamic string.
The only member, S, is a normal «char*» pointing to a NUL terminated text. Note however, that dynamic strings use their own memory management which cannot be mixed with the standard C library memory functions. Unused strings must be freed with StrFree(), and you must never use free() or realloc() on a dynamic string.