- An identifier beginning with a double underscore
- is reserved for use by the compiler
- An identifier beginning with a single underscore and a capital letter
- is reserved for use by the OS and libraries.
- An identifier containing double underscore is reserved:
- Not sure who it is reserved for
- Identifiers reserved in the global (or std) namespace:
- An underscore followed by any letter
- This at least means they are not macros but there are reserved
function names etc that are used by the implementation
Personally I just don't start identifiers with underscores.
New Addition to my rule: Don't use double underscore anywhere. Which is easy as I rarely use underscore.
After doing research on this article I no longer end my identifiers with '_t'
as this is reserved by the POSIX standard (which primarily affects C, but the restrictions are thus inherited by C++); see below for details.
From the Draft (C++) Standard:
17.6.4.3.3 Global names [global.names]
1 Certain sets of names and function signatures are always reserved to the implementation:
— Each name that contains a double underscore __ or begins with an underscore followed by an uppercase
letter (2.11) is reserved to the implementation for any use.
— Each name that begins with an underscore is reserved to the implementation for use as a name in the
global namespace.176
Footnote: 176) Such names are also reserved in namespace ::std (17.6.4.3).
From the C standard.
Because C++ imports the C standard these also apply (looking for chapter and verse):
Some additional classes of identifier names are reserved for future extensions to the C language or the POSIX.1 environment. While using these names for your own purposes right now might not cause a problem, they do raise the possibility of conflict with future versions of the C or POSIX standards, so you should avoid these names.
- Names beginning with a capital 'E' followed a digit or uppercase letter:
- may be used for additional error code names. See Error Reporting.
- Names that begin with either 'is' or 'to' followed by a lowercase letter
- may be used for additional character testing and conversion functions.
- Names that begin with 'LC_' followed by an uppercase letter
- may be used for additional macros specifying locale attributes.
- Names of all existing mathematics functions suffixed with
f' or l' are reserved
- for corresponding functions that operate on float and long double arguments, respectively.
- Names that begin with 'SIG' followed by an uppercase letter are reserved
- for additional signal names.
- Names that begin with 'SIG_' followed by an uppercase letter are reserved
- for additional signal actions.
- Names beginning with 'str', 'mem', or 'wcs' followed by a lowercase letter are reserved
- for additional string and array functions.
- Names that end with '_t' are reserved
- for additional type names.
The last one here surprised me a lot. I think that is a POSIX standard (not sure yet) looking for clarification and official chapter and verse. This is from the GNU libtool manual, listing reserved names.
CesarB provided the following link to the POSIX 2004 reserved symbols and notes 'that many other reserved prefixes and suffixes ... can be found there'. The
POSIX 2008 reserved symbols are defined here. The restrictions are somewhat more nuanced than those above.
Section 7.1.3 of the C standard (ISO 9899:1999) says:
7.1.3 Reserved identifiers
Each header declares or defines all identifiers listed in its associated subclause, and
optionally declares or defines identifiers listed in its associated future library directions
subclause and identifiers which are always reserved either for any use or for use as file
scope identifiers.
— All identifiers that begin with an underscore and either an uppercase letter or another
underscore are always reserved for any use.
— All identifiers that begin with an underscore are always reserved for use as identifiers
with file scope in both the ordinary and tag name spaces.
— Each macro name in any of the following subclauses (including the future library
directions) is reserved for use as specified if any of its associated headers is included;
unless explicitly stated otherwise (see 7.1.4).
— All identifiers with external linkage in any of the following subclauses (including the
future library directions) are always reserved for use as identifiers with external
linkage.154)
— Each identifier with file scope listed in any of the following subclauses (including the
future library directions) is reserved for use as a macro name and as an identifier with
file scope in the same name space if any of its associated headers is included.
No other identifiers are reserved. If the program declares or defines an identifier in a
context in which it is reserved (other than as allowed by 7.1.4), or defines a reserved
identifier as a macro name, the behavior is undefined.
If the program removes (with #undef) any macro definition of an identifier in the first
group listed above, the behavior is undefined.
Footnote 154) The list of reserved identifiers with external linkage includes errno, math_errhandling,
setjmp, and va_end.