diff options
Diffstat (limited to 'test/testFuncs1.h')
-rw-r--r-- | test/testFuncs1.h | 33 |
1 files changed, 31 insertions, 2 deletions
diff --git a/test/testFuncs1.h b/test/testFuncs1.h index 15d62be..4a8a91a 100644 --- a/test/testFuncs1.h +++ b/test/testFuncs1.h @@ -2,8 +2,8 @@ /*the first line's been intentionally left blank.*/
/***********************************************************************************************************/
/*defines*/
-#ifndef _TEST1_H
-#define _TEST1_H
+#ifndef TEST1_H
+#define TEST1_H
#define FALSE 0
#define TRUE 1
@@ -15,6 +15,8 @@ extern union uni { char str[20];
} uni1;
+extern int cccc[];
+
extern cucu;
int yetanotherheadervar;
@@ -141,7 +143,34 @@ void headerfund(void) sum = a + b;
}
+void testfunc9999(void)
+{
+ int** p1;
+ int*** p2;
+
+ struct
+ {
+ int* sp1;
+ int** sp2;
+ int*** sp3;
+ };
+
+ struct s* ps1;
+ struct s** ps2;
+ struct s*** ps3;
+
+ //INTPTR *const* const fedupp1;
+
+ int ** (*pfunc1)();
+ int ** (**pfunc2)();
+ int ** (***pfunc3)();
+ int *** (**pfunc4)();
+ int ** (**pfunc5)(int**, int**);
+ int ** (**pfunc6)(int**, int***);
+}
+
void malloc (void);
+
#endif
/***********************************************************************************************************/
/*ive been intentionally left blank. dont touch me.*/
|