|
NAMEaddnum - create a num and add it to a list See the file man1/alc_origin.1. SYNOPSIS#include "mut.h" num_list ∗addnum(ptnum, data) num_list ∗ptnum; long data; PARAMETERSDESCRIPTIONaddnum creates a new num element and adds it to the
front of the list pointed to by ptnum, and becomes itself the list
head.
RETURN VALUEaddnum returns a pointer to the new head of list. EXAMPLE
#include "mut.h"
#include "mlo.h"
void count(pn)
num_list ∗pn;
{
num_list ∗c = NULL; /∗ initialized for regularity ∗/
while (pt) {
if (pt->TYPE == EXTERNAL)
c = addnum(c, (void ∗)pt)
pt = pt->NEXT;
}
return c;
}
SEE ALSOmbk(1), num(3), freenum(3). See the file man1/alc_bug_report.1.
|