]> git.ozlabs.org Git - petitboot/blob - lib/util/util.h
ui/ncurses: Don't use menu offsets for user item numbers
[petitboot] / lib / util / util.h
1 /*
2  *  Copyright (C) 2013 IBM Corporation
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; version 2 of the License.
7  *
8  *  This program is distributed in the hope that it will be useful,
9  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
10  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  *  GNU General Public License for more details.
12  *
13  *  You should have received a copy of the GNU General Public License
14  *  along with this program; if not, write to the Free Software
15  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16  */
17
18 #ifndef UTIL_H
19 #define UTIL_H
20
21 #include <stdint.h>
22
23 #ifndef container_of
24 #define container_of(_ptr, _type, _member) ({ \
25         const typeof( ((_type *)0)->_member ) *__mptr = (_ptr); \
26         (_type *)( (char *)__mptr - offsetof(_type,_member) );})
27 #endif
28
29 #ifndef offsetof
30 #define offsetof(_type, _member) ((size_t) &((_type *)0)->_member)
31 #endif
32
33 #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
34
35 #define min(a,b) ({                                     \
36                 typeof(a) _min_a = (a);                 \
37                 typeof(b) _min_b = (b);                 \
38                 (void)(&_min_a == &_min_b);             \
39                 _min_a < _min_b ? _min_a : _min_b;      \
40                 })
41
42 #define max(a,b) ({                                     \
43                 typeof(a) _max_a = (a);                 \
44                 typeof(b) _max_b = (b);                 \
45                 (void)(&_max_a == &_max_b);             \
46                 _max_a > _max_b ? _max_a : _max_b;      \
47                 })
48
49 #define build_assert(x) \
50         do { (void)sizeof(char[(x)?1:-1]); } while (0)
51
52 void mac_str(uint8_t *mac, unsigned int maclen, char *buf, unsigned int buflen);
53
54 #endif /* UTIL_H */
55