aboutsummaryrefslogtreecommitdiffstats
path: root/common.h
blob: ab021cc37e45f814213240c44c73b22cb8b1a5f4 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* 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 <limits.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>


#define TIME_MAX ((time_t)((1ULL << (8 * sizeof(time_t) - 1)) - 1ULL))


#define DESTROY_ALL_OBJECTS(LIST, FUNC)\
	do {\
		void *destroy_all_temp__ = (LIST);\
		if (destroy_all_temp__) {\
			for (; *(LIST); (LIST)++) {\
				FUNC(*(LIST));\
				free(*(LIST));\
			}\
			free(destroy_all_temp__);\
		}\
	} while (0)


#define DESTROY_ALL_STRINGS(LIST)\
	do {\
		void *destroy_all_temp__ = (LIST);\
		if (destroy_all_temp__) {\
			for (; *(LIST); (LIST)++)\
				free(*(LIST));\
			free(destroy_all_temp__);\
		}\
	} while (0)