Home | History | Annotate | Download | only in racoon

Lines Matching refs:cf

139 	struct conf *cf;
143 cf = calloc(sizeof(struct conf), 1);
144 cf->l1 = genlist_init();
145 cf->l2 = genlist_init();
147 genlist_insert(cf->l1, "Ahoj");
148 genlist_insert(cf->l1, "Cau");
149 genlist_insert(cf->l1, "Nazdar");
150 genlist_insert(cf->l1, "Te buch");
152 genlist_append(cf->l2, "Curak");
153 genlist_append(cf->l2, "Kozy");
154 genlist_append(cf->l2, "Pica");
155 genlist_append(cf->l2, "Prdel");
158 dump_list(cf->l2);
160 dump_list(cf->l1);
163 for (cp = genlist_next (cf->l2, &gpb); cp; cp = genlist_next (0, &gpb))
168 * genlist_free (cf->l1, 0); but to illustrate the idea */
169 genlist_free (cf->l1, free_data);
170 cf->l1 = 0;