]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/systemd/_sd-common.h
Merge pull request #11827 from keszybz/pkgconfig-variables
[thirdparty/systemd.git] / src / systemd / _sd-common.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
aacf3b48
LP
2#ifndef foosdcommonhfoo
3#define foosdcommonhfoo
4
5/***
aacf3b48
LP
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18***/
19
10b17992 20/* This is a private header; never even think of including this directly! */
aacf3b48 21
1070d271
ZJS
22#if defined(__INCLUDE_LEVEL__) && __INCLUDE_LEVEL__ <= 1
23# error "Do not include _sd-common.h directly; it is a private header."
fd1b903a
LP
24#endif
25
deae09cc
YW
26typedef void (*_sd_destroy_t)(void *userdata);
27
aacf3b48
LP
28#ifndef _sd_printf_
29# if __GNUC__ >= 4
2ee1c55d 30# define _sd_printf_(a,b) __attribute__((__format__(printf, a, b)))
aacf3b48
LP
31# else
32# define _sd_printf_(a,b)
33# endif
34#endif
35
36#ifndef _sd_sentinel_
012c2f76 37# define _sd_sentinel_ __attribute__((__sentinel__))
aacf3b48
LP
38#endif
39
40#ifndef _sd_packed_
012c2f76 41# define _sd_packed_ __attribute__((__packed__))
aacf3b48
LP
42#endif
43
98f91566 44#ifndef _sd_pure_
012c2f76 45# define _sd_pure_ __attribute__((__pure__))
98f91566
LP
46#endif
47
0095c454
LP
48#ifndef _SD_STRINGIFY
49# define _SD_XSTRINGIFY(x) #x
50# define _SD_STRINGIFY(x) _SD_XSTRINGIFY(x)
51#endif
52
53#ifndef _SD_BEGIN_DECLARATIONS
54# ifdef __cplusplus
55# define _SD_BEGIN_DECLARATIONS \
56 extern "C" { \
20ba6c2e 57 struct _sd_useless_struct_to_allow_trailing_semicolon_
0095c454
LP
58# else
59# define _SD_BEGIN_DECLARATIONS \
20ba6c2e 60 struct _sd_useless_struct_to_allow_trailing_semicolon_
0095c454
LP
61# endif
62#endif
63
64#ifndef _SD_END_DECLARATIONS
65# ifdef __cplusplus
66# define _SD_END_DECLARATIONS \
67 } \
20ba6c2e 68 struct _sd_useless_cpp_struct_to_allow_trailing_semicolon_
0095c454
LP
69# else
70# define _SD_END_DECLARATIONS \
20ba6c2e 71 struct _sd_useless_struct_to_allow_trailing_semicolon_
0095c454 72# endif
aacf3b48
LP
73#endif
74
4199f689
ZJS
75#ifndef _SD_ARRAY_STATIC
76# if __STDC_VERSION__ >= 199901L
77# define _SD_ARRAY_STATIC static
78# else
79# define _SD_ARRAY_STATIC
80# endif
81#endif
82
4afd3348 83#define _SD_DEFINE_POINTER_CLEANUP_FUNC(type, func) \
0cb27225 84 static __inline__ void func##p(type **p) { \
4afd3348
LP
85 if (*p) \
86 func(*p); \
87 } \
20ba6c2e 88 struct _sd_useless_struct_to_allow_trailing_semicolon_
4afd3348 89
aacf3b48 90#endif