ETISS 0.11.2
ExtendableTranslatingInstructionSetSimulator(version0.11.2)
Loading...
Searching...
No Matches
Coverage.h
Go to the documentation of this file.
1// SPDX-License-Identifier: BSD-3-Clause
2//
3// This file is part of ETISS. It is licensed under the BSD 3-Clause License; you may not use this file except in
4// compliance with the License. You should have received a copy of the license along with this project. If not, see the
5// LICENSE file.
6
7#ifndef __COVERAGE_H__
8#define __COVERAGE_H__
9
10#ifdef __cplusplus
11extern "C"
12{
13#endif
14
15#ifdef ETISS_USE_COREDSL_COVERAGE
16 void etiss_coverage_count(int count, ...);
17#else
18#define etiss_coverage_count(...)
19#endif
20
21#ifdef __cplusplus
22}
23#endif
24
25#endif
#define etiss_coverage_count(...)
Definition Coverage.h:18