xref: /original-bsd/sys/sys/clist.h (revision 4f485440)
1 /*	clist.h	4.4	81/03/09	*/
2 
3 /*
4  * Raw structures for the character list routines.
5  */
6 struct cblock {
7 	struct cblock *c_next;
8 	char	c_info[CBSIZE];
9 };
10 #ifdef KERNEL
11 struct	cblock *cfree;
12 int	nclist;
13 struct	cblock *cfreelist;
14 int	cfreecount;
15 #endif
16