Files
mars-tinyldap/freeava.c
2002-01-14 19:49:09 +00:00

11 lines
162 B
C

#include <stdlib.h>
#include "ldap.h"
void freeava(struct AttributeList* a) {
while (a) {
struct AttributeList* tmp=a->next;
free(a);
a=tmp;
}
}