aboutsummaryrefslogtreecommitdiffstats
path: root/test/testFuncs2.c
blob: 309c280fe82d42399b4fb72fa35050af7a28e4ef (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*first line intentionally left blank*/
/*********************************************************************************************************************/
/*inclusion directives*/
#include "testFuncs2.h"
/*********************************************************************************************************************/
/*macro and definitions*/
typedef const* INTPTR;
/*********************************************************************************************************************/
/*Globals*/

/*********************************************************************************************************************/
/*functions go here.*/
static void test33(void)
{
	short int a;
	long int b;

	b = (int)a;
}

void testfunc1(void)
{
	unsigned char a;
	unsigned char b;

	b =  a;
}

testfunc2(void)
{
	int a;
	int b;
	int sum;

	sum = a + b;
}

void testfunc3()
{
	int a;
	int b;
	int c;

	/*do stuff*/
}

int testfunc6(void)
{
	int a;
	int b;
	//return ();
}

int testfunc7(void)
{
	int a;
	int b;
	//return;
}

int testfunc8(void)
{
	int a[10];
	int b[10];

	int* p;

	p = &a[0];

	int i;
	int sum;
	int sum2;
	int garbage;
	int garbage2;

	for (i = 0; i < 10; ++i)
	{
		sum += *(a + i);
		sum2 += *(p + i);
		//garbage = *(a - b);
	}

	for (i = 10; i < 1; i++)
	{
		sum += *(a - i);
		sum2 += *(p - i);
		//garbage2 = *(p - a);
	}
}

void testfunc9(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)();
}
/*********************************************************************************************************************/
/*last line intentionally left blank.*/