11 lines
162 B
C
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;
|
|
}
|
|
}
|