Move to kernel style SPDX license identifiers
[babeltrace.git] / include / babeltrace2-ctf-writer / types.h
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright (C) 2010-2019 EfficiOS Inc. and Linux Foundation
5 */
6
7 #ifndef BABELTRACE2_CTF_WRITER_TYPES_H
8 #define BABELTRACE2_CTF_WRITER_TYPES_H
9
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13
14 /// False boolean value for the #bt_ctf_bool type.
15 #define BT_CTF_FALSE 0
16
17 /// True boolean value for the #bt_ctf_bool type.
18 #define BT_CTF_TRUE 1
19
20 typedef int bt_ctf_bool;
21
22 #ifdef __cplusplus
23 }
24 #endif
25
26 #endif /* BABELTRACE2_CTF_WRITER_TYPES_H */
This page took 0.028762 seconds and 4 git commands to generate.