Accept valid alternatives to "null character"

This commit is contained in:
Pragmatic Software 2015-01-29 01:24:59 -08:00
parent 652d91d748
commit 07a8da6edc
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@
[5.1.2.2.1 Program startup] If the host environment is not capable of supplying strings with letters in both uppercase and lowercase, the implementation shall ensure that the strings are received in this case.|lowercase|lower
[5.1.2.2.1 Program startup] If the value of argc is this, the string pointed to by argv[0] represents the program name.|greater than zero{argv[0][0] shall be the null character if the program name is not available from the host environment.}|>0{argv[0][0] shall be the null character if the program name is not available from the host environment.}|greater than 0{argv[0][0] shall be the null character if the program name is not available from the host environment.}
[5.1.2.2.1 Program startup] If the value of argc is greater than zero, the string pointed to by argv[0] represents this.|program name{argv[0][0] shall be the null character if the program name is not available from the host environment.}
[5.1.2.2.1 Program startup] If the value of argc is greater than zero, the string pointed to by argv[0] represents the program name; argv[0][0] shall be this if the program name is not available from the host environment.|null character|0|'\0'
[5.1.2.2.1 Program startup] If the value of argc is greater than zero, the string pointed to by argv[0] represents the program name; argv[0][0] shall be this if the program name is not available from the host environment.|null character|0|'\0'|null
[5.1.2.2.1 Program startup] If the value of argc is this, the strings pointed to by argv[1] through argv[argc-1] represent the program parameters.|greater than one|greater than 1|>1
[5.1.2.2.1 Program startup] If the value of argc is greater than one, the strings pointed to by argv[1] through argv[argc-1] represent this.|program parameters|parameters
[5.1.2.2.3 Program termination] If the return type of the main function is a type compatible with this, a return from the initial call to the main function is equivalent to calling the exit function with the value returned by the main function as its argument.|int
@ -91,7 +91,7 @@
[5.2.1.1 Trigraph sequences] These sequences enable the input of characters that are not defined in the Invariant Code Set as described in ISO/IEC 646, which is a subset of the seven-bit US ASCII code set.|trigraph sequences{Their use is discouraged in modern C.}|trigraphs{Their use is discouraged in modern C.}
[5.2.1.1 Trigraph sequences] The following tokens, ??= ??) ??! ??( ??' ??> ??/ ??< and ??-, are known as these.|trigraph sequences{Their use is discouraged in modern C.}|trigraphs{Their use is discouraged in modern C.}
[5.2.1.2 Multibyte characters] The source character set and the execution character set may both contain multibyte characters. If so, this character set shall be present and each character shall be encoded as a single byte.|basic character set|basic
[5.2.1.2 Multibyte characters] This character shall not occur as part of any other multibyte character.|null character
[5.2.1.2 Multibyte characters] This character shall not occur as part of any other multibyte character.|null character|null|'\0'|0
[5.2.1.2 Multibyte characters] An identifier, comment, string literal, character constant, or header name shall consist of a sequence of this kind of valid characters.|multibyte
[5.2.2 Character display semantics] This position is the location on a display device where the next character output by the fputc function would appear.|active|active position
[5.2.2 Character display semantics] The active position is that location on a display device where the next character output by this function would appear.|fputc