chiark / gitweb /
bus: export utf8 validator calls as pure functions
[elogind.git] / src / systemd / _sd-common.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #ifndef foosdcommonhfoo
4 #define foosdcommonhfoo
5
6 /***
7   This file is part of systemd.
8
9   Copyright 2013 Lennart Poettering
10
11   systemd is free software; you can redistribute it and/or modify it
12   under the terms of the GNU Lesser General Public License as published by
13   the Free Software Foundation; either version 2.1 of the License, or
14   (at your option) any later version.
15
16   systemd is distributed in the hope that it will be useful, but
17   WITHOUT ANY WARRANTY; without even the implied warranty of
18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19   Lesser General Public License for more details.
20
21   You should have received a copy of the GNU Lesser General Public License
22   along with systemd; If not, see <http://www.gnu.org/licenses/>.
23 ***/
24
25 /* This is a private header, never even think of including this directly! */
26
27 #ifndef _sd_printf_
28 #  if __GNUC__ >= 4
29 #    define _sd_printf_(a,b) __attribute__ ((format (printf, a, b)))
30 #  else
31 #    define _sd_printf_(a,b)
32 #  endif
33 #endif
34
35 #ifndef _sd_sentinel_
36 #  define _sd_sentinel_ __attribute__((sentinel))
37 #endif
38
39 #ifndef _sd_packed_
40 #  define _sd_packed_ __attribute__((packed))
41 #endif
42
43 #ifndef _sd_pure_
44 #  define _sd_pure_ __attribute__((pure))
45 #endif
46
47 #ifndef _SD_STRINGIFY
48 #  define _SD_XSTRINGIFY(x) #x
49 #  define _SD_STRINGIFY(x) _SD_XSTRINGIFY(x)
50 #endif
51
52 #ifndef _SD_BEGIN_DECLARATIONS
53 #  ifdef __cplusplus
54 #    define _SD_BEGIN_DECLARATIONS                              \
55         extern "C" {                                            \
56         struct __useless_struct_to_allow_trailing_semicolon__
57 #  else
58 #    define _SD_BEGIN_DECLARATIONS                              \
59         struct __useless_struct_to_allow_trailing_semicolon__
60 #  endif
61 #endif
62
63 #ifndef _SD_END_DECLARATIONS
64 #  ifdef __cplusplus
65 #    define _SD_END_DECLARATIONS                                \
66         }                                                       \
67         struct __useless_struct_to_allow_trailing_semicolon__
68 #  else
69 #    define _SD_END_DECLARATIONS                                \
70         struct __useless_struct_to_allow_trailing_semicolon__
71 #  endif
72 #endif
73
74 #endif