#include "mlist_tmpl_h.inc"
Include dependency graph for charlist.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Defines | |
#define | MlCargo char* |
storage data type of list. | |
#define | ML_LIST_NAME CharList |
name of the list data type. | |
#define | ML_FUNC_PFX charList |
prefix of CharList's member functions. | |
#define | ML_COPY_CARGO(dest, source) |
define a rule for copying of a string. More... | |
#define | ML_FREE_CARGO(cargo) pd_free(cargo) |
free space allocated by ML_CREATE_CARGO or ML_COPY_CARGO. |
Definition in file charlist.h.
|
Value: { \ dest = pd_malloc(strlen(source)); \ strcpy(dest, source); \ }
Definition at line 48 of file charlist.h. |