[ << ] [ < ] [ Up ] [ > ] [ >> ]         [Top] [Contents] [Index] [ ? ]

F.2 Variable Naming

Variables should be named in all lowercase letters, and words within them delimited by underscores, such as my_useful_variable. PascalCase and camelCase are not to be used in this codebase under any circumstances.

Constants defined via the C preprocessor should be in all uppercase letters, with words within them likewise delimited by underscores, such as:

#define MY_USEFUL_CONSTANT 1

This document was generated on November 11, 2022 using texi2html 5.0.