Libical API Documentation 4.0
Loading...
Searching...
No Matches
libical_sentinel.h
1
5
6#ifndef LIBICAL_SENTINEL_H
7#define LIBICAL_SENTINEL_H
8
9/* sentinel attribute macro */
10#if defined(NO_SENTINEL_WARNINGS)
11#define LIBICAL_SENTINEL
12#else
13#if !defined(LIBICAL_SENTINEL)
14#if defined(__GNUC__) || defined(__clang__)
15#define LIBICAL_SENTINEL __attribute__((sentinel))
16#else
17/* sentinel attributes are unknown to MSVC */
18#define LIBICAL_SENTINEL
19#endif
20#endif
21#endif
22
23#endif