diff options
Diffstat (limited to '')
-rw-r--r-- | test/testFuncs2.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/testFuncs2.h b/test/testFuncs2.h new file mode 100644 index 0000000..e376c53 --- /dev/null +++ b/test/testFuncs2.h @@ -0,0 +1,20 @@ + +extern int a[]; + +extern int b[] = {1, 2, 3, 4, 5, 6}; + +int c[2][3] = {1, 2, 3, 4, 5, 6}; + +int d[2][3] = {{1, 2, 3}, {4, 5, 6}}; + +static void test33(void); + +void testFunc4() +{ + /*do shit*/ +} + +testFunc5( void) +{ + +} |