blob: 34fbbbf6f95c910db36d1ca53828988bc5393365 [file] [log] [blame]
Julian Hall38c729b2020-11-23 18:23:03 +01001/*
Gabor Toth70cb3c62023-05-10 12:40:24 +02002 * Copyright (c) 2020-2023, Arm Limited and Contributors. All rights reserved.
Julian Hall38c729b2020-11-23 18:23:03 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef TS_DEMO_H
8#define TS_DEMO_H
9
Gabor Toth70cb3c62023-05-10 12:40:24 +020010#include <stdbool.h>
Julian Hall38c729b2020-11-23 18:23:03 +010011
Gabor Toth70cb3c62023-05-10 12:40:24 +020012#ifdef __cplusplus
13extern "C" {
14#endif
15
16bool run_ts_demo(bool is_verbose);
17
18#ifdef __cplusplus
19}
20#endif
Julian Hall38c729b2020-11-23 18:23:03 +010021
22#endif /* TS_DEMO_H */