File: list.h

package info (click to toggle)
imapfilter 1%3A1.2.2-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 300 kB
  • ctags: 315
  • sloc: ansic: 3,392; sh: 182; makefile: 103
file content (16 lines) | stat: -rw-r--r-- 227 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef LIST_H
#define LIST_H


typedef struct list {
	void *data;
	struct list *next, *prev;
} list;


/*	list.h		*/
list *list_append(list *lst, void *data);
list *list_remove(list *lst, void *data);


#endif				/* LIST_H */