tizen 2.4 release
[framework/uifw/libevdev.git] / libevdev / libevdev-util.h
1 /*
2  * Copyright © 2013 Red Hat, Inc.
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and its
5  * documentation for any purpose is hereby granted without fee, provided that
6  * the above copyright notice appear in all copies and that both that copyright
7  * notice and this permission notice appear in supporting documentation, and
8  * that the name of the copyright holders not be used in advertising or
9  * publicity pertaining to distribution of the software without specific,
10  * written prior permission.  The copyright holders make no representations
11  * about the suitability of this software for any purpose.  It is provided "as
12  * is" without express or implied warranty.
13  *
14  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16  * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20  * OF THIS SOFTWARE.
21  */
22
23 #ifndef _UTIL_H_
24 #define _UTIL_H_
25
26 #include <config.h>
27 #include <stdbool.h>
28 #include <string.h>
29
30 #define LONG_BITS (sizeof(long) * 8)
31 #define NLONGS(x) (((x) + LONG_BITS - 1) / LONG_BITS)
32 #define ARRAY_LENGTH(a) (sizeof(a) / (sizeof((a)[0])))
33 #define unlikely(x) (__builtin_expect(!!(x),0))
34
35 #undef min
36 #undef max
37 #define min(a,b) \
38                 ({ __typeof__ (a) _a = (a); \
39                   __typeof__ (b) _b = (b); \
40                 _a > _b ? _b : _a; \
41                 })
42 #define max(a,b) \
43                 ({ __typeof__ (a) _a = (a); \
44                   __typeof__ (b) _b = (b); \
45                 _a > _b ? _a : _b; \
46                 })
47
48
49 static inline bool
50 startswith(const char *str, size_t len, const char *prefix, size_t plen)
51 {
52         return len >= plen && !strncmp(str, prefix, plen);
53 }
54
55 static inline int
56 bit_is_set(const unsigned long *array, int bit)
57 {
58     return !!(array[bit / LONG_BITS] & (1LL << (bit % LONG_BITS)));
59 }
60
61 static inline void
62 set_bit(unsigned long *array, int bit)
63 {
64     array[bit / LONG_BITS] |= (1LL << (bit % LONG_BITS));
65 }
66
67 static inline void
68 clear_bit(unsigned long *array, int bit)
69 {
70     array[bit / LONG_BITS] &= ~(1LL << (bit % LONG_BITS));
71 }
72
73 static inline void
74 set_bit_state(unsigned long *array, int bit, int state)
75 {
76         if (state)
77                 set_bit(array, bit);
78         else
79                 clear_bit(array, bit);
80 }
81
82 #endif