Notice: We have migrated to GitLab launching 2024-05-01 see here: https://gitlab.rtems.org/

Changes between Version 8 and Version 9 of Developer/Coding/NamingRules


Ignore:
Timestamp:
05/30/14 18:23:04 (10 years ago)
Author:
Gedare
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Developer/Coding/NamingRules

    v8 v9  
    88 *  Local-scope variable names are all lower case with underscores between words.
    99 *  CPP macros are all capital letters with underscores between words.
     10 *  Enumerated (enum) values are all capital letters with underscores between words, but the type name follows the regular rules of other type names.
    1011 *  Constant (const) variables follow the same rules as other variables. An exception is that a const that replaces a CPP macro might be all capital letters for backward compatibility.
    1112 *  Type names, function names, and global scope names have different rules depending on whether they are part of the public API or are internal to RTEMS, see below.