aboutsummaryrefslogtreecommitdiff
path: root/node.c
blob: ca6548bcecfb2851d1b6405db56f3e7db1d2a22b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <string.h>

#include "node.h"

/*constructor*/
node* mknode(str)
char *str;
{
	node *p = malloc(sizeof(node));
	assert(p);

	p->name = strdup(str);
	p->next = NULL;

	return p;
}

/* helpers */
node* search(root, str)
node *root;
char *str;
{
	node *p = root;
	while (p) {
		if (!strcmp(p->name, str)) {
			return p;
		}
		p = p->next;
	}
	return NULL;
}

node* insert(root, str) /*TODO change to accept double pointer*/
node *root;
char * str;
{
	node *p = mknode( str );
	p->next = root;
	return p;
}

void free_list(n)
node *n;
{
	node *tmp;

	for(tmp = n; tmp; tmp = n = n->next) {
		free(tmp);
	}
}