1csc_list(l)
2
3NAME
4	csc_list
5
6DESCRIPTION
7	List Subsystem
8
9	The csc library's list subsystem; there are functions for managing
10	arbitrary data in lists.  These lists can act like queues, stacks, or
11	just linked lists.
12
13FUNCTIONS
14	CSClistNew - create a new libcsc list
15	CSClistDel - remove a libcsc list
16	CSClistRead - read an ASCII format libcsc list
17	CSClistWrite - write a libcsc list in an ASCII format
18	CSClistSetCFunc - set a libcsc list entry data compare function
19	CSClistStat - retrieve libcsc list statistics
20	CSClistPush - create a new entry and push it onto a libcsc list
21	CSClistPop - pop an entry from a libcsc list and retrieve its data
22	CSClistPeek - retrieve data from entry at libcsc list head or tail
23	CSClistNodeNext - find next entry (node) in a libcsc list
24	CSClistNodeFindByValue - find libcsc list entry by data value
25	CSClistNodeFindByReference - find libcsc list entry (node) by reference
26	CSClistNodeStat - retrieve data fields from a libcsc list entry (node)
27	CSClistNodeValidate - verify an entry (node) is really in a libcsc list
28	CSClistNodeDel - remove an entry (node) from a libcsc list
29