2 * UCW Library -- Linked Lists of Simple Items
4 * (c) 2006 Martin Mares <mj@ucw.cz>
6 * This software may be freely distributed and used according to the terms
7 * of the GNU Lesser General Public License.
10 #ifndef _UCW_SIMPLE_LISTS_H
11 #define _UCW_SIMPLE_LISTS_H
13 #include "lib/clists.h"
15 typedef struct simp_node {
25 typedef struct simp2_node {
42 simp_node *simp_append(struct mempool *mp, clist *l);
43 simp2_node *simp2_append(struct mempool *mp, clist *l);
45 /* Configuration sections */
46 extern struct cf_section cf_string_list_config;
47 extern struct cf_section cf_2string_list_config;