blob: 028ca6e417a9f85ed731770207dceb6c1bce66a2 [file] [log] [blame]
Bram Moolenaare828b762018-09-10 17:51:58 +02001/*
2 * LibXDiff by Davide Libenzi ( File Differential Library )
3 * Copyright (C) 2003 Davide Libenzi
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * Davide Libenzi <davidel@xmailserver.org>
20 *
21 */
22
23#if !defined(XMACROS_H)
24#define XMACROS_H
25
26
Zoltan Arpadffy1c8e2332023-12-05 16:04:23 +010027#if defined(__hpux) || defined(VMS)
Bram Moolenaaraa261532023-03-21 20:04:58 +000028# ifndef SIZE_MAX
29# define SIZE_MAX ((size_t)(-1))
30# endif
31#endif
Bram Moolenaare828b762018-09-10 17:51:58 +020032
33#define XDL_MIN(a, b) ((a) < (b) ? (a): (b))
34#define XDL_MAX(a, b) ((a) > (b) ? (a): (b))
35#define XDL_ABS(v) ((v) >= 0 ? (v): -(v))
36#define XDL_ISDIGIT(c) ((c) >= '0' && (c) <= '9')
37#define XDL_ISSPACE(c) (isspace((unsigned char)(c)))
38#define XDL_ADDBITS(v,b) ((v) + ((v) >> (b)))
39#define XDL_MASKBITS(b) ((1UL << (b)) - 1)
40#define XDL_HASHLONG(v,b) (XDL_ADDBITS((unsigned long)(v), b) & XDL_MASKBITS(b))
Bram Moolenaare828b762018-09-10 17:51:58 +020041#define XDL_LE32_PUT(p, v) \
42do { \
43 unsigned char *__p = (unsigned char *) (p); \
44 *__p++ = (unsigned char) (v); \
45 *__p++ = (unsigned char) ((v) >> 8); \
46 *__p++ = (unsigned char) ((v) >> 16); \
47 *__p = (unsigned char) ((v) >> 24); \
48} while (0)
49#define XDL_LE32_GET(p, v) \
50do { \
51 unsigned char const *__p = (unsigned char const *) (p); \
52 (v) = (unsigned long) __p[0] | ((unsigned long) __p[1]) << 8 | \
53 ((unsigned long) __p[2]) << 16 | ((unsigned long) __p[3]) << 24; \
54} while (0)
55
Yee Cheng Chin5fedb8a2023-03-20 17:30:52 +000056/* Allocate an array of nr elements, returns NULL on failure */
57#define XDL_ALLOC_ARRAY(p, nr) \
58 ((p) = SIZE_MAX / sizeof(*(p)) >= (size_t)(nr) \
59 ? xdl_malloc((nr) * sizeof(*(p))) \
60 : NULL)
61
62/* Allocate an array of nr zeroed out elements, returns NULL on failure */
63#define XDL_CALLOC_ARRAY(p, nr) ((p) = xdl_calloc(nr, sizeof(*(p))))
64
65/*
66 * Ensure array p can accommodate at least nr elements, growing the
67 * array and updating alloc (which is the number of allocated
68 * elements) as necessary. Frees p and returns -1 on failure, returns
69 * 0 on success
70 */
71#define XDL_ALLOC_GROW(p, nr, alloc) \
72 (-!((nr) <= (alloc) || \
73 ((p) = xdl_alloc_grow_helper((p), (nr), &(alloc), sizeof(*(p))))))
Bram Moolenaare828b762018-09-10 17:51:58 +020074
Christian Brabandtba02e472021-08-31 20:46:39 +020075#endif /* #if !defined(XMACROS_H) */