aboutsummaryrefslogblamecommitdiffstats
path: root/test/testFuncs2.h
blob: 8f01004b67fd2371effcb273e8b3215864c77b0d (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 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}};
/*********************************************************************************************************************/
/*funciton types go here.*/
static void test33(void);

void testFunc1(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.*/