blob: 3e2e4b4e443703d3845a89b6487ad3268a287490 (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "libcontacts.h"
#include <sys/stat.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>
#if defined(__GNUC__) || defined(__clang__)
# define ATTRIBUTE_PURE __attribute__((__pure__))
#else
# define ATTRIBUTE_PURE
#endif
#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)
|