Home | History | Annotate | Download | only in config

Lines Matching defs:ll

307 	struct loclist *ll;
309 ll = emalloc(sizeof(*ll));
310 ll->ll_name = name;
311 ll->ll_string = string;
312 ll->ll_num = num;
313 ll->ll_next = NULL;
314 return ll;
318 loclist_destroy(struct loclist *ll)
322 while (ll != NULL) {
323 next = ll->ll_next;
324 ll->ll_next = NULL;
325 free(ll);
326 ll = next;