aboutsummaryrefslogtreecommitdiffstats
path: root/test/testFuncs2.h
blob: 85ddeee3cebd0f82e96be6e3cc892883db0265a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*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};

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()
{
	/*do shit*/
}

testFunc5( void)
{
	//different kind of comment
	///another kind
	/*this kind*/
	/**that kind*/
}

void testFunc9(void);

/*********************************************************************************************************************/
#endif
/*last line intentionally left blank.*/