diff options
author | bloodstalker <thabogre@gmail.com> | 2016-12-02 14:15:10 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2016-12-02 14:15:10 +0000 |
commit | b6cc214b246968700014c84f6383909c8ba77b63 (patch) | |
tree | d20c6a32a134af0b8419546cee341e0f261a8bc2 | |
parent | added 17.5 (diff) | |
download | mutator-b6cc214b246968700014c84f6383909c8ba77b63.tar.gz mutator-b6cc214b246968700014c84f6383909c8ba77b63.zip |
added tdd tests for 17.5
-rw-r--r-- | test/testFuncs2.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/testFuncs2.c b/test/testFuncs2.c index 130dbf2..36f0720 100644 --- a/test/testFuncs2.c +++ b/test/testFuncs2.c @@ -138,6 +138,13 @@ void testfunc9(void) int ** (**pfunc2)(); int ** (***pfunc3)(); int *** (**pfunc4)(); + int ** (**pfunc5)(int**, int**); + int ** (**pfunc6)(int**, int***); +} + +void testfunc10 (int ** (**p5)(int**, int**), int ** (**p6)(int**, int***)) +{ + } /*********************************************************************************************************************/ /*last line intentionally left blank.*/ |