blob: 0fcaa639aa8c3a01f49aaeff283093e156b12561 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Copyright (c) Vicent Marti. All rights reserved.
*
* This file is part of clar, distributed under the ISC license.
* For full terms see the included COPYING file.
*/
#ifndef __CLAR_TEST__
#define __CLAR_TEST__
/* Import the standard clar helper functions */
#include "clar.h"
/* Your custom shared includes / defines here */
extern int global_test_counter;
#endif
|