DOKK / manpages / debian 10 / alliance / addnum.3.en
ADDNUM(3) MBK UTILITY FUNCTIONS ADDNUM(3)

addnum - create a num and add it to a list

See the file buster/alliance/alc_origin.1.en.gz.

#include "mut.h"
num_list ∗addnum(ptnum, data)
num_list ∗ptnum;
long data;

Pointer to a num_list
Value of the data

addnum creates a new num element and adds it to the front of the list pointed to by ptnum, and becomes itself the list head.
The data fills the DATA field of the num strucutre. For details on the structure, see num(3).

addnum returns a pointer to the new head of list.

#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;
}	

mbk(1), num(3), freenum(3).

See the file buster/alliance/alc_bug_report.1.en.gz.

October 1, 1997 ASIM/LIP6