Home | History | Annotate | Download | only in config

Lines Matching defs:al

337 	struct attrlist *al;
339 al = emalloc(sizeof(*al));
340 al->al_next = NULL;
341 al->al_this = NULL;
342 return al;
348 struct attrlist *al;
350 al = attrlist_create();
351 al->al_next = next;
352 al->al_this = a;
353 return al;
357 attrlist_destroy(struct attrlist *al)
359 assert(al->al_next == NULL);
360 assert(al->al_this == NULL);
361 free(al);
365 attrlist_destroyall(struct attrlist *al)
369 while (al != NULL) {
370 next = al->al_next;
371 al->al_next = NULL;
373 al->al_this = NULL;
374 attrlist_destroy(al);
375 al = next;