summaryrefslogtreecommitdiffstats
path: root/test/lib-test-args.h
blob: 2f3792af386c5792101a141fb6464bc5f2c54f7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45

#ifndef LIB_TEST_ARGS_H
#define LIB_TEST_ARGS_H

char test_char_1(char a);
char test_char_2(char a, char b);
char test_char_3(char a, char b, char c);
char test_char_4(char a, char b, char c, char d);
char test_char_5(char a, char b, char c, char d, char e);
char test_char_6(char a, char b, char c, char d, char e, char f);
char test_char_7(char a, char b, char c, char d, char e, char f, char g);
char test_char_8(char a, char b, char c, char d, char e, char f, char g, char h);
char test_char_9(char a, char b, char c, char d, char e, char f, char g, char h, char i);

short test_short_1(short a);
short test_short_2(short a, short b);
short test_short_3(short a, short b, short c);
short test_short_4(short a, short b, short c, short d);
short test_short_5(short a, short b, short c, short d, short e);
short test_short_6(short a, short b, short c, short d, short e, short f);
short test_short_7(short a, short b, short c, short d, short e, short f, short g);
short test_short_8(short a, short b, short c, short d, short e, short f, short g, short h);
short test_short_9(short a, short b, short c, short d, short e, short f, short g, short h, short i);

int test_int_1(int a);
int test_int_2(int a, int b);
int test_int_3(int a, int b, int c);
int test_int_4(int a, int b, int c, int d);
int test_int_5(int a, int b, int c, int d, int e);
int test_int_6(int a, int b, int c, int d, int e, int f);
int test_int_7(int a, int b, int c, int d, int e, int f, int g);
int test_int_8(int a, int b, int c, int d, int e, int f, int g, int h);
int test_int_9(int a, int b, int c, int d, int e, int f, int g, int h, int i);

long test_long_1(long a);
long test_long_2(long a, long b);
long test_long_3(long a, long b, long c);
long test_long_4(long a, long b, long c, long d);
long test_long_5(long a, long b, long c, long d, long e);
long test_long_6(long a, long b, long c, long d, long e, long f);
long test_long_7(long a, long b, long c, long d, long e, long f, long g);
long test_long_8(long a, long b, long c, long d, long e, long f, long g, long h);
long test_long_9(long a, long b, long c, long d, long e, long f, long g, long h, long i);

#endif /* LIB_TEST_ARGS_H */