4 * @brief General purpose definitions and macros.
9 * Copyright (C) 2005 Jan Hutter, Martin Willi
10 * Hochschule fuer Technik Rapperswil
11 * Copyright (C) 1998, 1999 D. Hugh Redelmeier. (Endian stuff)
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
18 * This program is distributed in the hope that it will be useful, but
19 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
20 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
24 #ifndef DEFINITIONS_H_
25 #define DEFINITIONS_H_
27 /* stolen from strongswan */
29 # if defined(i386) && !defined(__i386__)
31 # define MYHACKFORTHIS 1
38 #elif !(defined(BIG_ENDIAN) && defined(LITTLE_ENDIAN) && defined(BYTE_ORDER))
39 /* we don't know how to do this, so we require the macros to be defined
40 * with compiler flags:
41 * -DBIG_ENDIAN=4321 -DLITTLE_ENDIAN=1234 -DBYTE_ORDER=BIG_ENDIAN
42 * or -DBIG_ENDIAN=4321 -DLITTLE_ENDIAN=1234 -DBYTE_ORDER=LITTLE_ENDIAN
43 * Thse match the GNU definitions
45 # include <sys/endian.h>
49 #error "BIG_ENDIAN must be defined"
53 #error "LITTLE_ENDIAN must be defined"
57 #error "BYTE_ORDER must be defined"
61 * Default length for various auxiliary text buffers
66 * Macro compares two strings for equality
68 #define streq(x,y) (strcmp(x, y) == 0)
71 * Macro compares two binary blobs for equality
73 #define memeq(x,y,len) (memcmp(x, y, len) == 0)
76 * Macro gives back larger of two values.
78 #define max(x,y) ((x) > (y) ? (x):(y))
81 * Macro gives back smaller of two values.
83 #define min(x,y) ((x) < (y) ? (x):(y))
86 * Debug macro to follow control flow
88 #define POS printf("%s, line %d\n", __FILE__, __LINE__)
91 * Macro to allocate a sized type.
93 * @param thing object on which a sizeof is performed
94 * @return poiner to allocated memory
96 #define malloc_thing(thing) ((thing*)malloc(sizeof(thing)))
100 * Mapping entry which defines the end of a mapping_t array.
102 #define MAPPING_END (-1)
104 typedef struct mapping_t mapping_t
;
107 * @brief Mapping entry, where enum-to-string mappings are stored.
124 * @brief Find a mapping_string in the mapping[].
126 * @param mappings mappings array
127 * @param value enum-value to get the string from
130 char *mapping_find(mapping_t
*mappings
, int value
);
132 #endif /*DEFINITIONS_H_*/