-
Notifications
You must be signed in to change notification settings - Fork 2
/
common.h
63 lines (44 loc) · 1.55 KB
/
common.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
* bugficks
* (c) 2013
*
* License: GPLv3
*
*/
//////////////////////////////////////////////////////////////////////////////
#ifndef __COMMOM_H__
#define __COMMOM_H__
//////////////////////////////////////////////////////////////////////////////
#ifndef _XOPEN_SOURCE
#define _XOPEN_SOURCE 500
#endif
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <stddef.h>
#include <limits.h>
#include <stdint.h>
//////////////////////////////////////////////////////////////////////////////
#define ARRAYSIZE(AR) (sizeof(AR)/sizeof(AR[0]))
#ifdef __cplusplus
#define C_ASSERT(e) typedef char __C_ASSERT__[(e)?1:-1]
#else
#define C_ASSERT(e) char __C_ASSERT__[(e)?1:-1] __attribute__((unused));
#endif
//#define C_ASSERT(e) do{extern char __C_ASSERT__[(e)?1:-1];(void)__C_ASSERT__;}while(0)
#define FIELD_OFFSET(s, field) ((ptrdiff_t)&((s *)(0))->field)
//////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
#define EXTERN_C extern "C"
#define EXTERN_C_BEGIN EXTERN_C {
#define EXTERN_C_END }
#else // ! #ifdef __cplusplus
#define EXTERN_C
#define EXTERN_C_BEGIN
#define EXTERN_C_END
#endif // #ifdef __cplusplus
//////////////////////////////////////////////////////////////////////////////
#define DECL_SPEC(...) __attribute__((__VA_ARGS__))
//////////////////////////////////////////////////////////////////////////////
#endif // #ifndef __COMMOM_H__
//////////////////////////////////////////////////////////////////////////////