A comment for the file, RCS header comments are treated specially when first.
An alternative #define comment.
A #define with args
#define def3( arg1, arg2 )
An alternative #define with args.
#define def4( arg1, arg2 )
enum | |
{ | |
one; | one value |
two; | another value |
} |
union bar | |
{ | |
char a; | Each element |
int b; | of a struct |
int c; | or a union |
long d; | can have a comment |
} |
struct | |
{ | |
int a; | A variable in a struct. |
union bar | |
{ | |
char a; | Each element |
int b; | of a struct |
int c; | or a union |
long d; | can have a comment |
} | |
e; | Nested structs and unions also work. |
} |
See: | Typedef type2 |
Visible in: | README.c | |
Used in: | function1() | README.c |
Visible in: | README.c |
Visible in: | README.c | |
Used in: | function1() | README.c |
Visible in: | README.c |
Visible in: | README.c |
Used in: | function1() |
int function1 ( int arg1, int arg2 )
Calls: | function2() | README.c |
Used in: | function2() | README.c |
References Variables: | var1 | README.c |
var3 | README.c | |
var4 | README.c |
int function2 ( int arg1, int arg2, void )
Called by: | function1() | README.c |
References Functions: | function1() | README.c |