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


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

Legend:

Unmodified
Added
Removed
Modified
  • Developer/Coding/NamingRules

    v7 v8  
    77 *  File names should be lower-case alphabet letters only, plus the extension.
    88 *  Local-scope variable names are all lower case with underscores between words.
    9  *  Constants are all capital letters with underscores between words.
     9 *  CPP macros are all capital letters with underscores between words.
     10 *  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.
    1011 *  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.
    1112= User-facing API =