~kris/9p

9hist

ref: 75d90bb5b7dfe29c85fbe05091c09cfc3e640de7 9hist/ss/malloc.h -rw-r--r-- 383 bytes
75d90bb5 — David du Colombier Plan 9 from Bell Labs 1991-08-28 35 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
struct tbl_entry {
	struct tbl_entry *next;		/* free list */
	int *data;			/* data */
};

struct table {
	int size;			/* # entries */
	struct tbl_entry *entries;	/* the entries */
	struct tbl_entry *free;		/* the free list */
};

void *tbl_alloc(struct table *, int);
void tbl_free(struct table *, void *);
int tbl_index(struct table *, void *);
void *tbl_data(struct table *, int);