summaryrefslogtreecommitdiffstats
path: root/test/lib-test-args.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib-test-args.h')
-rw-r--r--test/lib-test-args.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/test/lib-test-args.h b/test/lib-test-args.h
new file mode 100644
index 0000000..2f3792a
--- /dev/null
+++ b/test/lib-test-args.h
@@ -0,0 +1,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 */