aboutsummaryrefslogtreecommitdiffstats
path: root/test/testFuncs1.h
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2016-12-13 12:31:42 +0000
committerbloodstalker <thabogre@gmail.com>2016-12-13 12:31:42 +0000
commit997388e61e2bb746c8e40564438fa42b78577a48 (patch)
tree650715b3a17b3907f62a2f7a8c294c32de30d6d5 /test/testFuncs1.h
parentthe tdd tests will not be run using the compil_command.json for the time being. (diff)
downloadmutator-997388e61e2bb746c8e40564438fa42b78577a48.tar.gz
mutator-997388e61e2bb746c8e40564438fa42b78577a48.zip
updated tdd tests, cosmetic changes
Diffstat (limited to 'test/testFuncs1.h')
-rw-r--r--test/testFuncs1.h33
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.*/