]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/doc/gcc/c-implementation-defined-behavior/identifiers.rst
sphinx: add missing trailing newline
[thirdparty/gcc.git] / gcc / doc / gcc / c-implementation-defined-behavior / identifiers.rst
1 ..
2 Copyright 1988-2022 Free Software Foundation, Inc.
3 This is part of the GCC manual.
4 For copying conditions, see the copyright.rst file.
5
6 .. _identifiers-implementation:
7
8 Identifiers
9 ***********
10
11 * Which additional multibyte characters may appear in identifiers
12 and their correspondence to universal character names (C99 and C11 6.4.2).
13
14 See :ref:`cpp:implementation-defined-behavior`.
15
16 * The number of significant initial characters in an identifier
17 (C90 6.1.2, C90, C99 and C11 5.2.4.1, C99 and C11 6.4.2).
18
19 For internal names, all characters are significant. For external names,
20 the number of significant characters are defined by the linker; for
21 almost all targets, all characters are significant.
22
23 * Whether case distinctions are significant in an identifier with
24 external linkage (C90 6.1.2).
25
26 This is a property of the linker. C99 and C11 require that case distinctions
27 are always significant in identifiers with external linkage and
28 systems without this property are not supported by GCC.