Julian Hall | 38c729b | 2020-11-23 18:23:03 +0100 | [diff] [blame] | 1 | /* |
Gabor Toth | 70cb3c6 | 2023-05-10 12:40:24 +0200 | [diff] [blame] | 2 | * Copyright (c) 2020-2023, Arm Limited and Contributors. All rights reserved. |
Julian Hall | 38c729b | 2020-11-23 18:23:03 +0100 | [diff] [blame] | 3 | * |
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | */ | ||||
6 | |||||
7 | #ifndef TS_DEMO_H | ||||
8 | #define TS_DEMO_H | ||||
9 | |||||
Gabor Toth | 70cb3c6 | 2023-05-10 12:40:24 +0200 | [diff] [blame] | 10 | #include <stdbool.h> |
Julian Hall | 38c729b | 2020-11-23 18:23:03 +0100 | [diff] [blame] | 11 | |
Gabor Toth | 70cb3c6 | 2023-05-10 12:40:24 +0200 | [diff] [blame] | 12 | #ifdef __cplusplus |
13 | extern "C" { | ||||
14 | #endif | ||||
15 | |||||
16 | bool run_ts_demo(bool is_verbose); | ||||
17 | |||||
18 | #ifdef __cplusplus | ||||
19 | } | ||||
20 | #endif | ||||
Julian Hall | 38c729b | 2020-11-23 18:23:03 +0100 | [diff] [blame] | 21 | |
22 | #endif /* TS_DEMO_H */ |