|
NAMEchain - mbk lisp-like service structure DESCRIPTIONThe chain is used for any purpose, when a list of pointer is required. The use of this structure is strongly recommended, when such a need occurs. The declarations needed to work on chain are available in the header file "/labo/include/mut315.h", where '315' is the actual mbk version. The following C structure supports the description of the chain :
typedef struct chain {
struct chain ∗NEXT;
void ∗DATA;
} chain_list;
SEE ALSOmbk(1), addchain(3), freechain(3), delchain(3). See the file man1/alc_bug_report.1.
|