summaryrefslogtreecommitdiffstats
path: root/testsuites/support/include/test_support.h
blob: d3fd472a99b782a133bdf285966781154c6cccb0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 *  Support routines for test code.
 *
 *  $Id$
 */

#ifndef __TEST_SUPPORT_h
#define __TEST_SUPPORT_h

#ifdef __cplusplus
extern "C" {
#endif

extern void Allocate_majority_of_workspace( int smallest );
extern const char *Get_Too_Long_Name(void);
extern const char *Get_Longest_Name(void);

#ifdef __cplusplus
};
#endif

#endif