aboutsummaryrefslogtreecommitdiffstats
path: root/test/testFuncs2.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test/testFuncs2.h21
1 files changed, 19 insertions, 2 deletions
diff --git a/test/testFuncs2.h b/test/testFuncs2.h
index e376c53..85ddeee 100644
--- a/test/testFuncs2.h
+++ b/test/testFuncs2.h
@@ -1,4 +1,11 @@
+/*first line intentionally left blank.*/
+/*********************************************************************************************************************/
+/*Defines*/
+#ifndef TESTFUNCS2_H
+#define TESTFUNCS2_H
+/*********************************************************************************************************************/
+/*Globals*/
extern int a[];
extern int b[] = {1, 2, 3, 4, 5, 6};
@@ -6,7 +13,8 @@ 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}};
-
+/*********************************************************************************************************************/
+/*funciton types go here.*/
static void test33(void);
void testFunc4()
@@ -16,5 +24,14 @@ void testFunc4()
testFunc5( void)
{
-
+ //different kind of comment
+ ///another kind
+ /*this kind*/
+ /**that kind*/
}
+
+void testFunc9(void);
+
+/*********************************************************************************************************************/
+#endif
+/*last line intentionally left blank.*/