blob: bf886cd47ef5fe72e6ae33037b96449241a04ff8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* See LICENSE file for copyright and license details. */
#include "libcontacts.h"
#include <alloca.h>
#include <ctype.h>
#include <dirent.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#define DESTROY_ALL(LIST, FUNC)\
do {\
void *destroy_all_temp__;\
if ((destroy_all_temp__ = (LIST))) {\
for (; *(LIST); (LIST)++)\
FUNC(*(LIST));\
free(destroy_all_temp__);\
}\
} while (0)
|