xref: /original-bsd/sys/sys/clist.h (revision e59fb703)
1 /*-
2  * Copyright (c) 1990 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)clist.h	7.3 (Berkeley) 02/15/91
8  */
9 
10 struct cblock {
11 	struct cblock *c_next;		/* next cblock in queue */
12 	char c_quote[CBQSIZE];		/* quoted characters */
13 	char c_info[CBSIZE];		/* characters */
14 };
15 
16 #ifdef KERNEL
17 struct cblock *cfree, *cfreelist;
18 int cfreecount, nclist;
19 #endif
20