-
Notifications
You must be signed in to change notification settings - Fork 0
Making declarations
Paul Lynn edited this page Dec 26, 2021
·
8 revisions
Declaration is a single source of information about things included into your library.
You should enclose your declarations in /* */
code block. Ideal declaration looks like this:
/* @function function_name
* @return return_type
* @argument argument1_type
*/
All declarations consists of units, which is some keyword (like @member
) with a list of values separated by space. The first unit is always define declaration type.
Following declaration types are supported: functions, structs, enums, flags, variables, typedefs.