wm: teppich

ref: 9cb02ecc484ffa07a0a6052cbd40794572c340e2
dir: /libc/lladd.c/

View raw version
#include <u.h>
#include <err.h>
#include <mem.h>

int
lladd(ll_t *last, void *data)
{
	ll_t *temp = malloc(sizeof(ll_t*));

	temp->val = data;
	temp->next = nil;

	if(last->next != nil)
	{
		return LL_ERR;
	}

	last->next = temp;
	return OK;
}