aboutsummaryrefslogblamecommitdiffstats
path: root/test/testFuncs2.h
blob: 35a175f7bfc075f2faea66e4e339b8d41ab00958 (plain) (tree)
1
2
3
4
5
6
7
8
9
 


                                                                                                                       

               

                                                                                                                       
                  
 

                     

                        
                                       



                                     


                       

                                                                                                                       

                         

                     

                
                   



                
                                   
                         

                      
 
 

                             
                           

 
                     
                      
                      
                      



                                                                                                                       
/*first line intentionally left blank.*/
/*********************************************************************************************************************/
/*Defines*/
#ifndef TEST2_H
#define TEST2_H
/*********************************************************************************************************************/
/*Globals*/
extern int aaaa[];

extern double badboy;

extern int eldiablo = 0;

extern int bbbb[] = {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}};

int headervar;
double headervardouble;
/*********************************************************************************************************************/
/*funciton types go here.*/
static void test33(void);

void testFunc1(void);

void testFunc4()
{
	/*do shit*/
}

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

void anotherheaderfunc (void)
{
	/*i dont do jack.*/
}

void testFunc9(void);
void testFunc11(void);
void testFunc12(void);
void testFunc16(void);

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