#include "oldlist.h"
#include "freelist.h"
#include "danerror.h"
Go to the source code of this file.
Defines | |
#define | makestructure(newfunc, old, type) |
Functions | |
LIST | new_cell () |
void | free_cell (LIST) |
#define makestructure | ( | newfunc, | |||
old, | |||||
type | ) |
type *newfunc() \ { \ return new type; \ } \ \ \ \ void old(type* deadelement) \ { \ delete deadelement; \ } \
void free_cell | ( | LIST | ) |
LIST new_cell | ( | ) |