summaryrefslogtreecommitdiff
path: root/eg/boxcomment.c
blob: f5f0379973251b618de979cc683ddf92ff650b29 (plain)
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
/***************************************************************************
 * C style box comment.
 *
 * This function has a very pretty C style box comment.
 ***************************************************************************/
void boxcomm_c1(void);

/***************************************************************************
/ Fancier C style box comment.
/
/ This function has a very pretty C style box comment.
/***************************************************************************/
void boxcomm_c2(void);

/***************************************************************************
/*** Even Fancier C style box comment.
/***
/*** This function has a very pretty C style box comment.
/***************************************************************************/
void boxcomm_c3(void);

/*-------------------------------------------------------------------------
 * C style box comment.
 *
 * This function has a dashed C style box comment.
 *-------------------------------------------------------------------------*/
void boxcomm_c4(void);

////////////////////////////////////////////////////////////////////////////
// C++ style box comment.
//
// This function has a very pretty C++ style box comment.
////////////////////////////////////////////////////////////////////////////
void boxcomm_cpp1(void);

////////////////////////////////////////////////////////////////////////////
//// Fancier C++ style box comment.
////
//// This function has a very pretty C++ style box comment.
////////////////////////////////////////////////////////////////////////////
void boxcomm_cpp2(void);