xref: /original-bsd/sys/sys/clist.h (revision c3e32dec)
1 /*-
2  * Copyright (c) 1990, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)clist.h	8.1 (Berkeley) 06/04/93
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 extern	struct cblock *cfree, *cfreelist;
18 extern	int cfreecount, nclist;
19 #endif
20