cosmetic change (h6 is small on modern browsers)
authornsz <nsz@port70.net>
Fri, 22 Jul 2011 20:26:33 +0000 (22:26 +0200)
committernsz <nsz@port70.net>
Fri, 22 Jul 2011 20:26:33 +0000 (22:26 +0200)
ann2html.sh
n1256.html
n1548.html

index b628fe6..a4c127c 100755 (executable)
@@ -162,7 +162,7 @@ seencontents && !seenfore && /^[^@]/ {
 }
 
 /^ ?(Syntax|Semantics|Description|Constraints|Synopsis|Returns|Recommended practice|Implementation limits|Environmental limits)$/ {
-       ss[sid] = ss[sid] "<h6>" $0 "</h6>\n"
+       ss[sid] = ss[sid] "<p><b>" $0 "</b>\n"
        next
 }
 
@@ -255,7 +255,7 @@ END {
                print ss[i]
                n = split(snote[i],a)
                if (n > 0) {
-                       s = "<h6>footnotes</h6>\n"
+                       s = "<p><b>Footnotes</b>\n"
                        for (j = 1; j <= n; j++) {
                                s = s "<p><small><a name=\"note" a[j] "\" href=\"#note" a[j] "\">" a[j] ")</a>" note[a[j]+0] "</small>\n"
                        }
index 1c784ea..c88b2e6 100644 (file)
@@ -547,7 +547,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  
 </ul>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note1" href="#note1">1)</a> This International Standard is designed to promote the portability of C programs among a variety of
  data-processing systems. It is intended for use by implementors and programmers.
 </small>
@@ -878,7 +878,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  
 <!--page 21 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note2" href="#note2">2)</a> A strictly conforming program can use conditional features (such as those in <a href="#F">annex F</a>) provided the
  use is guarded by a #ifdef directive with the appropriate macro. For example:
 
@@ -979,7 +979,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  
 <!--page 23 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note5" href="#note5">5)</a> Implementations shall behave as if these separate phases occur, even though many are typically folded
  together in practice. Source files, translation units, and translated translation units need not
  necessarily be stored as files, nor need there be any one-to-one correspondence between these entities
@@ -1010,7 +1010,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  as being both a constraint error and resulting in undefined behavior, the constraint error shall be diagnosed.
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note8" href="#note8">8)</a> The intent is that an implementation should identify the nature of, and where possible localize, each
  violation. Of course, an implementation is free to produce any number of diagnostics as long as a
  valid program is still correctly translated. It may also successfully translate an invalid program.
@@ -1083,7 +1083,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  startup and program termination.
 </ul>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note9" href="#note9">9)</a> Thus, int can be replaced by a typedef name defined as int, or the type of argv can be written as
  char ** argv, and so on.
 </small>
@@ -1106,7 +1106,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  termination status returned to the host environment is unspecified.
 <p><b> Forward references</b>: definition of terms (<a href="#7.1.1">7.1.1</a>), the exit function (<a href="#7.20.4.3">7.20.4.3</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note10" href="#note10">10)</a> In accordance with <a href="#6.2.4">6.2.4</a>, the lifetimes of objects with automatic storage duration declared in main
  will have ended in the former case, even where they would not have in the latter.
 </small>
@@ -1278,7 +1278,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  signal function (<a href="#7.14">7.14</a>), files (<a href="#7.19.3">7.19.3</a>).
 <!--page 29 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note11" href="#note11">11)</a> The IEC 60559 standard for binary floating-point arithmetic requires certain user-accessible status
  flags and control modes. Floating-point operations implicitly set the status flags; modes affect result
  values of floating-point operations. Implementations that support such floating-point state are
@@ -1378,7 +1378,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
 </pre>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note12" href="#note12">12)</a> The trigraph 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.
 </small>
@@ -1506,7 +1506,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
 <li>  63 levels of nested structure or union definitions in a single struct-declaration-list
 </ul>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note13" href="#note13">13)</a> Implementations should avoid imposing fixed translation limits whenever possible.
 </small>
 <p><small><a name="note14" href="#note14">14)</a> See ''future language directions'' (<a href="#6.11.3">6.11.3</a>).
@@ -1617,7 +1617,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  UCHAR_MAX.<sup><a href="#note15"><b>15)</b></a></sup> The value UCHAR_MAX shall equal 2<sup>CHAR_BIT</sup> - 1.
 <p><b> Forward references</b>: representations of types (<a href="#6.2.6">6.2.6</a>), conditional inclusion (<a href="#6.10.1">6.10.1</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note15" href="#note15">15)</a> See <a href="#6.2.5">6.2.5</a>.
 </small>
 
@@ -1811,7 +1811,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
    LDBL_MIN                                           1E-37
 </pre>
 </ul>
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 12 -->
  Conversion from (at least) double to decimal with DECIMAL_DIG digits and back
  should be the identity function.
@@ -1898,7 +1898,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  (<a href="#7.20">7.20</a>), input/output <a href="#7.19">&lt;stdio.h&gt;</a> (<a href="#7.19">7.19</a>), mathematics <a href="#7.12">&lt;math.h&gt;</a> (<a href="#7.12">7.12</a>).
 <!--page 41 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note16" href="#note16">16)</a> The floating-point model is intended to clarify the description of each floating-point characteristic and
  does not require the floating-point arithmetic of the implementation to be identical.
 </small>
@@ -2030,7 +2030,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
 <p><b> Forward references</b>: declarations (<a href="#6.7">6.7</a>), expressions (<a href="#6.5">6.5</a>), external definitions (<a href="#6.9">6.9</a>),
  statements (<a href="#6.8">6.8</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note21" href="#note21">21)</a> There is no linkage between different identifiers.
 </small>
 <p><small><a name="note22" href="#note22">22)</a> A function declaration can contain the storage-class specifier static only if it is at file scope; see
@@ -2063,7 +2063,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  
 <!--page 44 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note24" href="#note24">24)</a> There is only one name space for tags even though three are possible.
 </small>
 
@@ -2107,7 +2107,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  
 <!--page 45 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note25" href="#note25">25)</a> The term ''constant address'' means that two pointers to the object constructed at possibly different
  times will compare equal. The address may be different during two different executions of the same
  program.
@@ -2298,7 +2298,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  
 <p><b> Forward references</b>: compatible type and composite type (<a href="#6.2.7">6.2.7</a>), declarations (<a href="#6.7">6.7</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note28" href="#note28">28)</a> Implementation-defined keywords shall have the form of an identifier reserved for any use as
  described in <a href="#7.1.3">7.1.3</a>.
 </small>
@@ -2384,7 +2384,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
 <p><b> Forward references</b>: declarations (<a href="#6.7">6.7</a>), expressions (<a href="#6.5">6.5</a>), lvalues, arrays, and function
  designators (<a href="#6.3.2.1">6.3.2.1</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note40" href="#note40">40)</a> A positional representation for integers that uses the binary digits 0 and 1, in which the values
  represented by successive bits are additive, begin with 1, and are multiplied by successive integral
  powers of 2, except perhaps the bit with the highest position. (Adapted from the American National
@@ -2459,7 +2459,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
 <!--page 52 -->
  for signed integer types the width is one greater than the precision.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note44" href="#note44">44)</a> Some combinations of padding bits might generate trap representations, for example, if one padding
  bit is a parity bit. Regardless, no arithmetic operation on valid values can generate a trap
  representation other than as part of an exceptional condition such as an overflow, and this cannot occur
@@ -2526,7 +2526,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
           int f(int (*)(char *), double (*)[3]);
 </pre>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note46" href="#note46">46)</a> Two types need not be identical to be compatible.
 </small>
 <p><small><a name="note47" href="#note47">47)</a> As specified in <a href="#6.2.1">6.2.1</a>, the later declaration might hide the prior declaration.
@@ -2589,7 +2589,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
 <p><b> Forward references</b>: enumeration specifiers (<a href="#6.7.2.2">6.7.2.2</a>), structure and union specifiers
  (<a href="#6.7.2.1">6.7.2.1</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note48" href="#note48">48)</a> The integer promotions are applied only: as part of the usual arithmetic conversions, to certain
  argument expressions, to the operands of the unary +, -, and ~ operators, and to both operands of the
  shift operators, as specified by their respective subclauses.
@@ -2612,7 +2612,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  Otherwise, the new type is signed and the value cannot be represented in it; either the
  result is implementation-defined or an implementation-defined signal is raised.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note49" href="#note49">49)</a> The rules describe arithmetic on the mathematical value, not the value of a given type of expression.
 </small>
 
@@ -2631,7 +2631,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  in an implementation-defined manner. If the value being converted is outside the range of
  values that can be represented, the behavior is undefined.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note50" href="#note50">50)</a> The remaindering operation performed when a value of integer type is converted to unsigned type
  need not be performed when a value of real floating type is converted to unsigned type. Thus, the
  range of portable real floating values is (-1, Utype_MAX+1).
@@ -2716,7 +2716,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  
 <!--page 58 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note51" href="#note51">51)</a> For example, addition of a double _Complex and a float entails just the conversion of the
  float operand to double (and yields a double _Complex result).
 </small>
@@ -2762,7 +2762,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  
 <!--page 59 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note53" href="#note53">53)</a> The name ''lvalue'' comes originally from the assignment expression E1 = E2, in which the left
  operand E1 is required to be a (modifiable) lvalue. It is perhaps better considered as representing an
  object ''locator value''. What is sometimes called ''rvalue'' is in this International Standard described
@@ -2828,7 +2828,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  capable of holding object pointers (<a href="#7.18.1.4">7.18.1.4</a>), simple assignment (<a href="#6.5.16.1">6.5.16.1</a>).
 <!--page 61 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note55" href="#note55">55)</a> The macro NULL is defined in <a href="#7.17">&lt;stddef.h&gt;</a> (and other headers) as a null pointer constant; see <a href="#7.17">7.17</a>.
 </small>
 <p><small><a name="note56" href="#note56">56)</a> The mapping functions for converting a pointer to an integer or an integer to a pointer are intended to
@@ -2840,7 +2840,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
 </small>
 
 <h3><a name="6.4" href="#6.4">6.4 Lexical elements</a></h3>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           token:
@@ -2858,11 +2858,11 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
                  punctuator
                  each non-white-space character that cannot be one of the above
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Each preprocessing token that is converted to a token shall have the lexical form of a
  keyword, an identifier, a constant, a string literal, or a punctuator.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  A token is the minimal lexical element of the language in translation phases 7 and 8. The
  categories of tokens are: keywords, identifiers, constants, string literals, and punctuators.
@@ -2907,13 +2907,13 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  (<a href="#6.5.3.1">6.5.3.1</a>), preprocessing directives (<a href="#6.10">6.10</a>), preprocessing numbers (<a href="#6.4.8">6.4.8</a>), string literals
  (<a href="#6.4.5">6.4.5</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note58" href="#note58">58)</a> An additional category, placemarkers, is used internally in translation phase 4 (see <a href="#6.10.3.3">6.10.3.3</a>); it cannot
  occur in source files.
 </small>
 
 <h4><a name="6.4.1" href="#6.4.1">6.4.1 Keywords</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           keyword: one of
@@ -2928,7 +2928,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
                 double                  long                  typedef
                 else                    register              union
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  The above tokens (case sensitive) are reserved (in translation phases 7 and 8) for use as
  keywords, and shall not be used otherwise. The keyword _Imaginary is reserved for
@@ -2938,14 +2938,14 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  
 <!--page 63 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note59" href="#note59">59)</a> One possible specification for imaginary types appears in <a href="#G">annex G</a>.
 </small>
 
 <h4><a name="6.4.2" href="#6.4.2">6.4.2 Identifiers</a></h4>
 
 <h5><a name="6.4.2.1" href="#6.4.2.1">6.4.2.1 General</a></h5>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           identifier:
@@ -2964,7 +2964,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
           digit: one of
                  0 1        2     3    4    5    6     7    8    9
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  An identifier is a sequence of nondigit characters (including the underscore _, the
  lowercase and uppercase Latin letters, and other characters) and digits, which designates
@@ -2984,7 +2984,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  
  
 <!--page 64 -->
-<h6>Implementation limits</h6>
+<p><b>Implementation limits</b>
 <p><!--para 5 -->
  As discussed in <a href="#5.2.4.1">5.2.4.1</a>, an implementation may limit the number of significant initial
  characters in an identifier; the limit for an external name (an identifier that has external
@@ -2996,7 +2996,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  identifiers differ only in nonsignificant characters, the behavior is undefined.
 <p><b> Forward references</b>: universal character names (<a href="#6.4.3">6.4.3</a>), macro replacement (<a href="#6.10.3">6.10.3</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note60" href="#note60">60)</a> On systems in which linkers cannot accept extended characters, an encoding of the universal character
  name may be used in forming valid external identifiers. For example, some otherwise unused
  character or sequence of characters may be used to encode the \u in a universal character name.
@@ -3004,7 +3004,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
 </small>
 
 <h5><a name="6.4.2.2" href="#6.4.2.2">6.4.2.2 Predefined identifiers</a></h5>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 1 -->
  The identifier __func__ shall be implicitly declared by the translator as if,
  immediately following the opening brace of each function definition, the declaration
@@ -3038,13 +3038,13 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  
 <!--page 65 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note61" href="#note61">61)</a> Since the name __func__ is reserved for any use by the implementation (<a href="#7.1.3">7.1.3</a>), if any other
  identifier is explicitly declared using the name __func__, the behavior is undefined.
 </small>
 
 <h4><a name="6.4.3" href="#6.4.3">6.4.3 Universal character names</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           universal-character-name:
@@ -3054,16 +3054,16 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
                  hexadecimal-digit hexadecimal-digit
                               hexadecimal-digit hexadecimal-digit
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  A universal character name shall not specify a character whose short identifier is less than
  00A0 other than 0024 ($), 0040 (@), or 0060 ('), nor one in the range D800 through
  DFFF inclusive.<sup><a href="#note62"><b>62)</b></a></sup>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 3 -->
  Universal character names may be used in identifiers, character constants, and string
  literals to designate characters that are not in the basic character set.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  The universal character name \Unnnnnnnn designates the character whose eight-digit
  short identifier (as specified by ISO/IEC 10646) is nnnnnnnn.<sup><a href="#note63"><b>63)</b></a></sup> Similarly, the universal
@@ -3075,7 +3075,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  
 <!--page 66 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note62" href="#note62">62)</a> The disallowed characters are the characters in the basic character set and the code positions reserved
  by ISO/IEC 10646 for control characters, the character DELETE, and the S-zone (reserved for use by
  UTF-16).
@@ -3084,7 +3084,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
 </small>
 
 <h4><a name="6.4.4" href="#6.4.4">6.4.4 Constants</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           constant:
@@ -3093,16 +3093,16 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
                  enumeration-constant
                  character-constant
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Each constant shall have a type and the value of a constant shall be in the range of
  representable values for its type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  Each constant has a type, determined by its form and value, as detailed later.
 
 <h5><a name="6.4.4.1" href="#6.4.4.1">6.4.4.1 Integer constants</a></h5>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <!--page 67 -->
 <pre>
@@ -3141,7 +3141,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
         long-long-suffix: one of
                ll LL
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  An integer constant begins with a digit, but has no period or exponent part. It may have a
  prefix that specifies its base and a suffix that specifies its type.
@@ -3151,7 +3151,7 @@ WG14/N1256                Committee Draft -- Septermber 7, 2007
  digits 0 through 7 only. A hexadecimal constant consists of the prefix 0x or 0X followed
  by a sequence of the decimal digits and the letters a (or A) through f (or F) with values
  10 through 15 respectively.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  The value of a decimal constant is computed base 10; that of an octal constant, base 8;
  that of a hexadecimal constant, base 16. The lexically first digit is the most significant.
@@ -3233,7 +3233,7 @@ unsigned long long int
 <!--page 69 -->
 
 <h5><a name="6.4.4.2" href="#6.4.4.2">6.4.4.2 Floating constants</a></h5>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <!--page 70 -->
 <pre>
@@ -3272,7 +3272,7 @@ unsigned long long int
           floating-suffix: one of
                  f l F L
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  A floating constant has a significand part that may be followed by an exponent part and a
  suffix that specifies its type. The components of the significand part may include a digit
@@ -3281,7 +3281,7 @@ unsigned long long int
  e, E, p, or P followed by an exponent consisting of an optionally signed digit sequence.
  Either the whole-number part or the fraction part has to be present; for decimal floating
  constants, either the period or the exponent part has to be present.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The significand part is interpreted as a (decimal or hexadecimal) rational number; the
  digit sequence in the exponent part is interpreted as a decimal integer. For decimal
@@ -3300,7 +3300,7 @@ unsigned long long int
  Floating constants are converted to internal format as if at translation-time. The
  conversion of a floating constant shall not raise an exceptional condition or a floating-
  point exception at execution time.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 6 -->
  The implementation should produce a diagnostic message if a hexadecimal constant
  cannot be represented exactly in its evaluation format; the implementation should then
@@ -3316,25 +3316,25 @@ unsigned long long int
  
 <!--page 71 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note64" href="#note64">64)</a> The specification for the library functions recommends more accurate conversion than required for
  floating constants (see <a href="#7.20.1.3">7.20.1.3</a>).
 </small>
 
 <h5><a name="6.4.4.3" href="#6.4.4.3">6.4.4.3 Enumeration constants</a></h5>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           enumeration-constant:
                 identifier
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  An identifier declared as an enumeration constant has type int.
 <p><b> Forward references</b>: enumeration specifiers (<a href="#6.7.2.2">6.7.2.2</a>).
 
 <h5><a name="6.4.4.4" href="#6.4.4.4">6.4.4.4 Character constants</a></h5>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <!--page 72 -->
 <pre>
@@ -3364,7 +3364,7 @@ unsigned long long int
                 \x hexadecimal-digit
                 hexadecimal-escape-sequence hexadecimal-digit
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  An integer character constant is a sequence of one or more multibyte characters enclosed
  in single-quotes, as in 'x'. A wide character constant is the same, except prefixed by the
@@ -3411,12 +3411,12 @@ unsigned long long int
  
  
 <!--page 73 -->
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 9 -->
  The value of an octal or hexadecimal escape sequence shall be in the range of
  representable values for the type unsigned char for an integer character constant, or
  the unsigned type corresponding to wchar_t for a wide character constant.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 10 -->
  An integer character constant has type int. The value of an integer character constant
  containing a single character that maps to a single-byte execution character is the
@@ -3462,13 +3462,13 @@ unsigned long long int
  (<a href="#7.20.7.2">7.20.7.2</a>).
 <!--page 74 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note65" href="#note65">65)</a> The semantics of these characters were discussed in <a href="#5.2.2">5.2.2</a>. If any other character follows a backslash,
  the result is not a token and a diagnostic is required. See ''future language directions'' (<a href="#6.11.4">6.11.4</a>).
 </small>
 
 <h4><a name="6.4.5" href="#6.4.5">6.4.5 String literals</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           string-literal:
@@ -3482,7 +3482,7 @@ unsigned long long int
                                  the double-quote ", backslash \, or new-line character
                     escape-sequence
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  A character string literal is a sequence of zero or more multibyte characters enclosed in
  double-quotes, as in "xyz". A wide string literal is the same, except prefixed by the
@@ -3493,7 +3493,7 @@ unsigned long long int
  character constant, except that the single-quote ' is representable either by itself or by the
  escape sequence \', but the double-quote " shall be represented by the escape sequence
  \".
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  In translation phase 6, the multibyte character sequences specified by any sequence of
  adjacent character and wide string literal tokens are concatenated into a single multibyte
@@ -3529,13 +3529,13 @@ unsigned long long int
 <p><b> Forward references</b>: common definitions <a href="#7.17">&lt;stddef.h&gt;</a> (<a href="#7.17">7.17</a>), the mbstowcs
  function (<a href="#7.20.8.1">7.20.8.1</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note66" href="#note66">66)</a> A character string literal need not be a string (see <a href="#7.1.1">7.1.1</a>), because a null character may be embedded in
  it by a \0 escape sequence.
 </small>
 
 <h4><a name="6.4.6" href="#6.4.6">6.4.6 Punctuators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           punctuator: one of
@@ -3547,7 +3547,7 @@ unsigned long long int
                  , # ##
                  &lt;: :&gt; &lt;% %&gt; %: %:%:
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A punctuator is a symbol that has independent syntactic and semantic significance.
  Depending on context, it may specify an operation to be performed (which in turn may
@@ -3568,7 +3568,7 @@ unsigned long long int
 <p><b> Forward references</b>: expressions (<a href="#6.5">6.5</a>), declarations (<a href="#6.7">6.7</a>), preprocessing directives
  (<a href="#6.10">6.10</a>), statements (<a href="#6.8">6.8</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note67" href="#note67">67)</a> These tokens are sometimes called ''digraphs''.
 </small>
 <p><small><a name="note68" href="#note68">68)</a> Thus [ and &lt;: behave differently when ''stringized'' (see <a href="#6.10.3.2">6.10.3.2</a>), but can otherwise be freely
@@ -3576,7 +3576,7 @@ unsigned long long int
 </small>
 
 <h4><a name="6.4.7" href="#6.4.7">6.4.7 Header names</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           header-name:
@@ -3595,7 +3595,7 @@ unsigned long long int
                     any member of the source character set except
                                  the new-line character and "
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  The sequences in both forms of header names are mapped in an implementation-defined
  manner to headers or external source file names as specified in <a href="#6.10.2">6.10.2</a>.
@@ -3627,14 +3627,14 @@ unsigned long long int
  
 <p><b> Forward references</b>: source file inclusion (<a href="#6.10.2">6.10.2</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note69" href="#note69">69)</a> Thus, sequences of characters that resemble escape sequences cause undefined behavior.
 </small>
 <p><small><a name="note70" href="#note70">70)</a> For an example of a header name preprocessing token used in a #pragma directive, see <a href="#6.10.9">6.10.9</a>.
 </small>
 
 <h4><a name="6.4.8" href="#6.4.8">6.4.8 Preprocessing numbers</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           pp-number:
@@ -3648,14 +3648,14 @@ unsigned long long int
                 pp-number       P sign
                 pp-number       .
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  A preprocessing number begins with a digit optionally preceded by a period (.) and may
  be followed by valid identifier characters and the character sequences e+, e-, E+, E-,
  p+, p-, P+, or P-.
 <p><!--para 3 -->
  Preprocessing number tokens lexically include all floating and integer constant tokens.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  A preprocessing number does not have type or a value; it acquires both after a successful
  conversion (as part of translation phase 7) to a floating constant token or an integer
@@ -3697,7 +3697,7 @@ unsigned long long int
  
 <!--page 79 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note71" href="#note71">71)</a> Thus, /* ... */ comments do not nest.
 </small>
 
@@ -3764,7 +3764,7 @@ unsigned long long int
  
 <!--page 81 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note72" href="#note72">72)</a> A floating-point status flag is not an object and can be set more than once within an expression.
 </small>
 <p><small><a name="note73" href="#note73">73)</a> This paragraph renders undefined statement expressions such as
@@ -3804,7 +3804,7 @@ unsigned long long int
 </small>
 
 <h4><a name="6.5.1" href="#6.5.1">6.5.1 Primary expressions</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           primary-expression:
@@ -3813,7 +3813,7 @@ unsigned long long int
                  string-literal
                  ( expression )
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  An identifier is a primary expression, provided it has been declared as designating an
  object (in which case it is an lvalue) or a function (in which case it is a function
@@ -3830,12 +3830,12 @@ unsigned long long int
  designator, or a void expression.
 <p><b> Forward references</b>: declarations (<a href="#6.7">6.7</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note79" href="#note79">79)</a> Thus, an undeclared identifier is a violation of the syntax.
 </small>
 
 <h4><a name="6.5.2" href="#6.5.2">6.5.2 Postfix operators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           postfix-expression:
@@ -3861,11 +3861,11 @@ unsigned long long int
 </pre>
 
 <h5><a name="6.5.2.1" href="#6.5.2.1">6.5.2.1 Array subscripting</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  One of the expressions shall have type ''pointer to object type'', the other expression shall
  have integer type, and the result has type ''type''.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A postfix expression followed by an expression in square brackets [] is a subscripted
  designation of an element of an array object. The definition of the subscript operator []
@@ -3899,7 +3899,7 @@ unsigned long long int
 <!--page 83 -->
 
 <h5><a name="6.5.2.2" href="#6.5.2.2">6.5.2.2 Function calls</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The expression that denotes the called function<sup><a href="#note80"><b>80)</b></a></sup> shall have type pointer to function
  returning void or returning an object type other than an array type.
@@ -3908,7 +3908,7 @@ unsigned long long int
  number of arguments shall agree with the number of parameters. Each argument shall
  have a type such that its value may be assigned to an object with the unqualified version
  of the type of its corresponding parameter.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  A postfix expression followed by parentheses () containing a possibly empty, comma-
  separated list of expressions is a function call. The postfix expression denotes the called
@@ -3978,7 +3978,7 @@ unsigned long long int
 <p><b> Forward references</b>: function declarators (including prototypes) (<a href="#6.7.5.3">6.7.5.3</a>), function
  definitions (<a href="#6.9.1">6.9.1</a>), the return statement (<a href="#6.8.6.4">6.8.6.4</a>), simple assignment (<a href="#6.5.16.1">6.5.16.1</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note80" href="#note80">80)</a> Most often, this is the result of converting an identifier that is a function designator.
 </small>
 <p><small><a name="note81" href="#note81">81)</a> A function may change the values of its parameters, but these changes cannot affect the values of the
@@ -3988,7 +3988,7 @@ unsigned long long int
 </small>
 
 <h5><a name="6.5.2.3" href="#6.5.2.3">6.5.2.3 Structure and union members</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The first operand of the . operator shall have a qualified or unqualified structure or union
  type, and the second operand shall name a member of that type.
@@ -3997,7 +3997,7 @@ unsigned long long int
  structure'' or ''pointer to qualified or unqualified union'', and the second operand shall
  name a member of the type pointed to.
 <!--page 85 -->
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  A postfix expression followed by the . operator and an identifier designates a member of
  a structure or union object. The value is that of the named member,<sup><a href="#note82"><b>82)</b></a></sup> and is an lvalue if
@@ -4091,7 +4091,7 @@ unsigned long long int
  specifiers (<a href="#6.7.2.1">6.7.2.1</a>).
 <!--page 87 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note82" href="#note82">82)</a> If the member used to access the contents of a union object is not the same as the member last used to
  store a value in the object, the appropriate part of the object representation of the value is reinterpreted
  as an object representation in the new type as described in <a href="#6.2.6">6.2.6</a> (a process sometimes called "type
@@ -4102,11 +4102,11 @@ unsigned long long int
 </small>
 
 <h5><a name="6.5.2.4" href="#6.5.2.4">6.5.2.4 Postfix increment and decrement operators</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The operand of the postfix increment or decrement operator shall have qualified or
  unqualified real or pointer type and shall be a modifiable lvalue.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  The result of the postfix ++ operator is the value of the operand. After the result is
  obtained, the value of the operand is incremented. (That is, the value 1 of the appropriate
@@ -4121,7 +4121,7 @@ unsigned long long int
 <p><b> Forward references</b>: additive operators (<a href="#6.5.6">6.5.6</a>), compound assignment (<a href="#6.5.16.2">6.5.16.2</a>).
 
 <h5><a name="6.5.2.5" href="#6.5.2.5">6.5.2.5 Compound literals</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The type name shall specify an object type or an array of unknown size, but not a variable
  length array type.
@@ -4131,7 +4131,7 @@ unsigned long long int
 <p><!--para 3 -->
  If the compound literal occurs outside the body of a function, the initializer list shall
  consist of constant expressions.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  A postfix expression that consists of a parenthesized type name followed by a brace-
  enclosed list of initializers is a compound literal. It provides an unnamed object whose
@@ -4255,7 +4255,7 @@ unsigned long long int
 <p><b> Forward references</b>: type names (<a href="#6.7.6">6.7.6</a>), initialization (<a href="#6.7.8">6.7.8</a>).
 <!--page 90 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note84" href="#note84">84)</a> Note that this differs from a cast expression. For example, a cast specifies a conversion to scalar types
  or void only, and the result of a cast expression is not an lvalue.
 </small>
@@ -4266,7 +4266,7 @@ unsigned long long int
 </small>
 
 <h4><a name="6.5.3" href="#6.5.3">6.5.3 Unary operators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           unary-expression:
@@ -4281,11 +4281,11 @@ unsigned long long int
 </pre>
 
 <h5><a name="6.5.3.1" href="#6.5.3.1">6.5.3.1 Prefix increment and decrement operators</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The operand of the prefix increment or decrement operator shall have qualified or
  unqualified real or pointer type and shall be a modifiable lvalue.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  The value of the operand of the prefix ++ operator is incremented. The result is the new
  value of the operand after incrementation. The expression ++E is equivalent to (E+=1).
@@ -4297,14 +4297,14 @@ unsigned long long int
 <p><b> Forward references</b>: additive operators (<a href="#6.5.6">6.5.6</a>), compound assignment (<a href="#6.5.16.2">6.5.16.2</a>).
 
 <h5><a name="6.5.3.2" href="#6.5.3.2">6.5.3.2 Address and indirection operators</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The operand of the unary &amp; operator shall be either a function designator, the result of a
  [] or unary * operator, or an lvalue that designates an object that is not a bit-field and is
  not declared with the register storage-class specifier.
 <p><!--para 2 -->
  The operand of the unary * operator shall have pointer type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The unary &amp; operator yields the address of its operand. If the operand has type ''type'',
  the result has type ''pointer to type''. If the operand is the result of a unary * operator,
@@ -4324,7 +4324,7 @@ unsigned long long int
 <p><b> Forward references</b>: storage-class specifiers (<a href="#6.7.1">6.7.1</a>), structure and union specifiers
  (<a href="#6.7.2.1">6.7.2.1</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note87" href="#note87">87)</a> Thus, &amp;*E is equivalent to E (even if E is a null pointer), and &amp;(E1[E2]) to ((E1)+(E2)). It is
  always true that if E is a function designator or an lvalue that is a valid operand of the unary &amp;
  operator, *&amp;E is a function designator or an lvalue equal to E. If *P is an lvalue and T is the name of
@@ -4335,11 +4335,11 @@ unsigned long long int
 </small>
 
 <h5><a name="6.5.3.3" href="#6.5.3.3">6.5.3.3 Unary arithmetic operators</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The operand of the unary + or - operator shall have arithmetic type; of the ~ operator,
  integer type; of the ! operator, scalar type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  The result of the unary + operator is the value of its (promoted) operand. The integer
  promotions are performed on the operand, and the result has the promoted type.
@@ -4363,12 +4363,12 @@ unsigned long long int
 <!--page 92 -->
 
 <h5><a name="6.5.3.4" href="#6.5.3.4">6.5.3.4 The sizeof operator</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The sizeof operator shall not be applied to an expression that has function type or an
  incomplete type, to the parenthesized name of such a type, or to an expression that
  designates a bit-field member.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  The sizeof operator yields the size (in bytes) of its operand, which may be an
  expression or the parenthesized name of a type. The size is determined from the type of
@@ -4428,27 +4428,27 @@ unsigned long long int
 <p><b> Forward references</b>: common definitions <a href="#7.17">&lt;stddef.h&gt;</a> (<a href="#7.17">7.17</a>), declarations (<a href="#6.7">6.7</a>),
  structure and union specifiers (<a href="#6.7.2.1">6.7.2.1</a>), type names (<a href="#6.7.6">6.7.6</a>), array declarators (<a href="#6.7.5.2">6.7.5.2</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note88" href="#note88">88)</a> When applied to a parameter declared to have array or function type, the sizeof operator yields the
  size of the adjusted (pointer) type (see <a href="#6.9.1">6.9.1</a>).
 </small>
 
 <h4><a name="6.5.4" href="#6.5.4">6.5.4 Cast operators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           cast-expression:
                  unary-expression
                  ( type-name ) cast-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Unless the type name specifies a void type, the type name shall specify qualified or
  unqualified scalar type and the operand shall have scalar type.
 <p><!--para 3 -->
  Conversions that involve pointers, other than where permitted by the constraints of
  <a href="#6.5.16.1">6.5.16.1</a>, shall be specified by means of an explicit cast.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  Preceding an expression by a parenthesized type name converts the value of the
  expression to the named type. This construction is called a cast.<sup><a href="#note89"><b>89)</b></a></sup> A cast that specifies
@@ -4465,13 +4465,13 @@ unsigned long long int
  
 <!--page 94 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note89" href="#note89">89)</a> A cast does not yield an lvalue. Thus, a cast to a qualified type has the same effect as a cast to the
  unqualified version of the type.
 </small>
 
 <h4><a name="6.5.5" href="#6.5.5">6.5.5 Multiplicative operators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           multiplicative-expression:
@@ -4480,11 +4480,11 @@ unsigned long long int
                   multiplicative-expression / cast-expression
                   multiplicative-expression % cast-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Each of the operands shall have arithmetic type. The operands of the % operator shall
  have integer type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The usual arithmetic conversions are performed on the operands.
 <p><!--para 4 -->
@@ -4498,12 +4498,12 @@ unsigned long long int
  fractional part discarded.<sup><a href="#note90"><b>90)</b></a></sup> If the quotient a/b is representable, the expression
  (a/b)*b + a%b shall equal a.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note90" href="#note90">90)</a> This is often called ''truncation toward zero''.
 </small>
 
 <h4><a name="6.5.6" href="#6.5.6">6.5.6 Additive operators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           additive-expression:
@@ -4511,7 +4511,7 @@ unsigned long long int
                   additive-expression + multiplicative-expression
                   additive-expression - multiplicative-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  For addition, either both operands shall have arithmetic type, or one operand shall be a
  pointer to an object type and the other shall have integer type. (Incrementing is
@@ -4529,7 +4529,7 @@ unsigned long long int
 <li>  the left operand is a pointer to an object type and the right operand has integer type.
 </ul>
  (Decrementing is equivalent to subtracting 1.)
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  If both operands have arithmetic type, the usual arithmetic conversions are performed on
  them.
@@ -4593,7 +4593,7 @@ unsigned long long int
 <p><b> Forward references</b>: array declarators (<a href="#6.7.5.2">6.7.5.2</a>), common definitions <a href="#7.17">&lt;stddef.h&gt;</a>
  (<a href="#7.17">7.17</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note91" href="#note91">91)</a> Another way to approach pointer arithmetic is first to convert the pointer(s) to character pointer(s): In
  this scheme the integer expression added to or subtracted from the converted pointer is first multiplied
  by the size of the object originally pointed to, and the resulting pointer is converted back to the
@@ -4605,7 +4605,7 @@ unsigned long long int
 </small>
 
 <h4><a name="6.5.7" href="#6.5.7">6.5.7 Bitwise shift operators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           shift-expression:
@@ -4613,10 +4613,10 @@ unsigned long long int
                   shift-expression &lt;&lt; additive-expression
                   shift-expression &gt;&gt; additive-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Each of the operands shall have integer type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The integer promotions are performed on each of the operands. The type of the result is
  that of the promoted left operand. If the value of the right operand is negative or is
@@ -4639,7 +4639,7 @@ unsigned long long int
  resulting value is implementation-defined.
 
 <h4><a name="6.5.8" href="#6.5.8">6.5.8 Relational operators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           relational-expression:
@@ -4649,7 +4649,7 @@ unsigned long long int
                   relational-expression   &lt;=   shift-expression
                   relational-expression   &gt;=   shift-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  One of the following shall hold:
 <ul>
@@ -4659,7 +4659,7 @@ unsigned long long int
 <li>  both operands are pointers to qualified or unqualified versions of compatible
  incomplete types.
 </ul>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  If both of the operands have arithmetic type, the usual arithmetic conversions are
  performed.
@@ -4685,13 +4685,13 @@ unsigned long long int
  (greater than or equal to) shall yield 1 if the specified relation is true and 0 if it is false.<sup><a href="#note92"><b>92)</b></a></sup>
  The result has type int.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note92" href="#note92">92)</a> The expression a&lt;b&lt;c is not interpreted as in ordinary mathematics. As the syntax indicates, it
  means (a&lt;b)&lt;c; in other words, ''if a is less than b, compare 1 to c; otherwise, compare 0 to c''.
 </small>
 
 <h4><a name="6.5.9" href="#6.5.9">6.5.9 Equality operators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           equality-expression:
@@ -4699,7 +4699,7 @@ unsigned long long int
                  equality-expression == relational-expression
                  equality-expression != relational-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  One of the following shall hold:
 <ul>
@@ -4709,7 +4709,7 @@ unsigned long long int
  qualified or unqualified version of void; or
 <li>  one operand is a pointer and the other is a null pointer constant.
 </ul>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The == (equal to) and != (not equal to) operators are analogous to the relational
  operators except for their lower precedence.<sup><a href="#note93"><b>93)</b></a></sup> Each of the operators yields 1 if the
@@ -4741,7 +4741,7 @@ unsigned long long int
  array behaves the same as a pointer to the first element of an array of length one with the
  type of the object as its element type.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note93" href="#note93">93)</a> Because of the precedences, a&lt;b == c&lt;d is 1 whenever a&lt;b and c&lt;d have the same truth-value.
 </small>
 <p><small><a name="note94" href="#note94">94)</a> Two objects may be adjacent in memory because they are adjacent elements of a larger array or
@@ -4752,17 +4752,17 @@ unsigned long long int
 </small>
 
 <h4><a name="6.5.10" href="#6.5.10">6.5.10 Bitwise AND operator</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           AND-expression:
                 equality-expression
                 AND-expression &amp; equality-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Each of the operands shall have integer type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The usual arithmetic conversions are performed on the operands.
 <p><!--para 4 -->
@@ -4776,17 +4776,17 @@ unsigned long long int
 <!--page 100 -->
 
 <h4><a name="6.5.11" href="#6.5.11">6.5.11 Bitwise exclusive OR operator</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           exclusive-OR-expression:
                   AND-expression
                   exclusive-OR-expression ^ AND-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Each of the operands shall have integer type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The usual arithmetic conversions are performed on the operands.
 <p><!--para 4 -->
@@ -4795,17 +4795,17 @@ unsigned long long int
  operands is set).
 
 <h4><a name="6.5.12" href="#6.5.12">6.5.12 Bitwise inclusive OR operator</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           inclusive-OR-expression:
                   exclusive-OR-expression
                   inclusive-OR-expression | exclusive-OR-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Each of the operands shall have integer type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The usual arithmetic conversions are performed on the operands.
 <p><!--para 4 -->
@@ -4815,17 +4815,17 @@ unsigned long long int
 <!--page 101 -->
 
 <h4><a name="6.5.13" href="#6.5.13">6.5.13 Logical AND operator</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
            logical-AND-expression:
                    inclusive-OR-expression
                    logical-AND-expression &amp;&amp; inclusive-OR-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Each of the operands shall have scalar type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The &amp;&amp; operator shall yield 1 if both of its operands compare unequal to 0; otherwise, it
  yields 0. The result has type int.
@@ -4835,17 +4835,17 @@ unsigned long long int
  compares equal to 0, the second operand is not evaluated.
 
 <h4><a name="6.5.14" href="#6.5.14">6.5.14 Logical OR operator</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
            logical-OR-expression:
                    logical-AND-expression
                    logical-OR-expression || logical-AND-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Each of the operands shall have scalar type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The || operator shall yield 1 if either of its operands compare unequal to 0; otherwise, it
  yields 0. The result has type int.
@@ -4856,14 +4856,14 @@ unsigned long long int
 <!--page 102 -->
 
 <h4><a name="6.5.15" href="#6.5.15">6.5.15 Conditional operator</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           conditional-expression:
                  logical-OR-expression
                  logical-OR-expression ? expression : conditional-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  The first operand shall have scalar type.
 <p><!--para 3 -->
@@ -4877,7 +4877,7 @@ unsigned long long int
 <li>  one operand is a pointer to an object or incomplete type and the other is a pointer to a
  qualified or unqualified version of void.
 </ul>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  The first operand is evaluated; there is a sequence point after its evaluation. The second
  operand is evaluated only if the first compares unequal to 0; the third operand is evaluated
@@ -4927,12 +4927,12 @@ unsigned long long int
 </pre>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note95" href="#note95">95)</a> A conditional expression does not yield an lvalue.
 </small>
 
 <h4><a name="6.5.16" href="#6.5.16">6.5.16 Assignment operators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           assignment-expression:
@@ -4941,10 +4941,10 @@ unsigned long long int
           assignment-operator: one of
                  = *= /= %= +=                       -=     &lt;&lt;=      &gt;&gt;=      &amp;=     ^=     |=
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  An assignment operator shall have a modifiable lvalue as its left operand.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  An assignment operator stores a value in the object designated by the left operand. An
  assignment expression has the value of the left operand after the assignment, but is not an
@@ -4959,7 +4959,7 @@ unsigned long long int
 <!--page 104 -->
 
 <h5><a name="6.5.16.1" href="#6.5.16.1">6.5.16.1 Simple assignment</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  One of the following shall hold:<sup><a href="#note96"><b>96)</b></a></sup>
 <ul>
@@ -4976,7 +4976,7 @@ unsigned long long int
 <li>  the left operand is a pointer and the right is a null pointer constant; or
 <li>  the left operand has type _Bool and the right is a pointer.
 </ul>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  In simple assignment (=), the value of the right operand is converted to the type of the
  assignment expression and replaces the value stored in the object designated by the left
@@ -5031,7 +5031,7 @@ unsigned long long int
  value of the const object c.
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note96" href="#note96">96)</a> The asymmetric appearance of these constraints with respect to type qualifiers is due to the conversion
  (specified in <a href="#6.3.2.1">6.3.2.1</a>) that changes lvalues to ''the value of the expression'' and thus removes any type
  qualifiers that were applied to the type category of the expression (for example, it removes const but
@@ -5039,7 +5039,7 @@ unsigned long long int
 </small>
 
 <h5><a name="6.5.16.2" href="#6.5.16.2">6.5.16.2 Compound assignment</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  For the operators += and -= only, either the left operand shall be a pointer to an object
  type and the right shall have integer type, or the left operand shall have qualified or
@@ -5047,21 +5047,21 @@ unsigned long long int
 <p><!--para 2 -->
  For the other operators, each operand shall have arithmetic type consistent with those
  allowed by the corresponding binary operator.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  A compound assignment of the form E1 op = E2 differs from the simple assignment
  expression E1 = E1 op (E2) only in that the lvalue E1 is evaluated only once.
 <!--page 106 -->
 
 <h4><a name="6.5.17" href="#6.5.17">6.5.17 Comma operator</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           expression:
                  assignment-expression
                  expression , assignment-expression
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  The left operand of a comma operator is evaluated as a void expression; there is a
  sequence point after its evaluation. Then the right operand is evaluated; the result has its
@@ -5084,22 +5084,22 @@ unsigned long long int
  
 <!--page 107 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note97" href="#note97">97)</a> A comma operator does not yield an lvalue.
 </small>
 
 <h3><a name="6.6" href="#6.6">6.6 Constant expressions</a></h3>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           constant-expression:
                  conditional-expression
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  A constant expression can be evaluated during translation rather than runtime, and
  accordingly may be used in any place that a constant may be.
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 3 -->
  Constant expressions shall not contain assignment, increment, decrement, function-call,
  or comma operators, except when they are contained within a subexpression that is not
@@ -5107,7 +5107,7 @@ unsigned long long int
 <p><!--para 4 -->
  Each constant expression shall evaluate to a constant that is in the range of representable
  values for its type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 5 -->
  An expression that evaluates to a constant is required in several contexts. If a floating
  expression is evaluated in the translation environment, the arithmetic precision and range
@@ -5160,7 +5160,7 @@ unsigned long long int
  
 <!--page 109 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note98" href="#note98">98)</a> The operand of a sizeof operator is usually not evaluated (<a href="#6.5.3.4">6.5.3.4</a>).
 </small>
 <p><small><a name="note99" href="#note99">99)</a> An integer constant expression is used to specify the size of a bit-field member of a structure, the
@@ -5177,7 +5177,7 @@ unsigned long long int
 </small>
 
 <h3><a name="6.7" href="#6.7">6.7 Declarations</a></h3>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           declaration:
@@ -5194,7 +5194,7 @@ unsigned long long int
                   declarator
                   declarator = initializer
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  A declaration shall declare at least a declarator (other than the parameters of a function or
  the members of a structure or union), a tag, or the members of an enumeration.
@@ -5205,7 +5205,7 @@ unsigned long long int
 <p><!--para 4 -->
  All declarations in the same scope that refer to the same object or function shall specify
  compatible types.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 5 -->
  A declaration specifies the interpretation and attributes of a set of identifiers. A definition
  of an identifier is a declaration for that identifier that:
@@ -5231,12 +5231,12 @@ unsigned long long int
 <p><b> Forward references</b>: declarators (<a href="#6.7.5">6.7.5</a>), enumeration specifiers (<a href="#6.7.2.2">6.7.2.2</a>), initialization
  (<a href="#6.7.8">6.7.8</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note101" href="#note101">101)</a> Function definitions have a different syntax, described in <a href="#6.9.1">6.9.1</a>.
 </small>
 
 <h4><a name="6.7.1" href="#6.7.1">6.7.1 Storage-class specifiers</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           storage-class-specifier:
@@ -5246,11 +5246,11 @@ unsigned long long int
                  auto
                  register
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  At most, one storage-class specifier may be given in the declaration specifiers in a
  declaration.<sup><a href="#note102"><b>102)</b></a></sup>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The typedef specifier is called a ''storage-class specifier'' for syntactic convenience
  only; it is discussed in <a href="#6.7.7">6.7.7</a>. The meanings of the various linkages and storage durations
@@ -5273,7 +5273,7 @@ unsigned long long int
  or union member objects.
 <p><b> Forward references</b>: type definitions (<a href="#6.7.7">6.7.7</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note102" href="#note102">102)</a> See ''future language directions'' (<a href="#6.11.5">6.11.5</a>).
 </small>
 <p><small><a name="note103" href="#note103">103)</a> The implementation may treat any register declaration simply as an auto declaration. However,
@@ -5285,7 +5285,7 @@ unsigned long long int
 </small>
 
 <h4><a name="6.7.2" href="#6.7.2">6.7.2 Type specifiers</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           type-specifier:
@@ -5304,7 +5304,7 @@ unsigned long long int
                  enum-specifier
                  typedef-name
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  At least one type specifier shall be given in the declaration specifiers in each declaration,
  and in the specifier-qualifier list in each struct declaration and type name. Each list of
@@ -5340,7 +5340,7 @@ unsigned long long int
 <p><!--para 3 -->
  The type specifier _Complex shall not be used if the implementation does not provide
  complex types.<sup><a href="#note104"><b>104)</b></a></sup>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  Specifiers for structures, unions, and enumerations are discussed in <a href="#6.7.2.1">6.7.2.1</a> through
  <a href="#6.7.2.3">6.7.2.3</a>. Declarations of typedef names are discussed in <a href="#6.7.7">6.7.7</a>. The characteristics of the
@@ -5357,12 +5357,12 @@ unsigned long long int
  
 <!--page 113 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note104" href="#note104">104)</a> Freestanding implementations are not required to provide complex types.                  *
 </small>
 
 <h5><a name="6.7.2.1" href="#6.7.2.1">6.7.2.1 Structure and union specifiers</a></h5>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           struct-or-union-specifier:
@@ -5386,7 +5386,7 @@ unsigned long long int
                   declarator
                   declarator<sub>opt</sub> : constant-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  A structure or union shall not contain a member with incomplete or function type (hence,
  a structure shall not contain an instance of itself, but may contain a pointer to an instance
@@ -5403,7 +5403,7 @@ unsigned long long int
  A bit-field shall have a type that is a qualified or unqualified version of _Bool, signed
  int, unsigned int, or some other implementation-defined type.
 <!--page 114 -->
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 5 -->
  As discussed in <a href="#6.2.5">6.2.5</a>, a structure is a type consisting of a sequence of members, whose
  storage is allocated in an ordered sequence, and a union is a type consisting of a sequence
@@ -5558,7 +5558,7 @@ unsigned long long int
 <p><b> Forward references</b>: tags (<a href="#6.7.2.3">6.7.2.3</a>).
 <!--page 117 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note105" href="#note105">105)</a> A structure or union can not contain a member with a variably modified type because member names
  are not ordinary identifiers as defined in <a href="#6.2.3">6.2.3</a>.
 </small>
@@ -5573,7 +5573,7 @@ unsigned long long int
 </small>
 
 <h5><a name="6.7.2.2" href="#6.7.2.2">6.7.2.2 Enumeration specifiers</a></h5>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           enum-specifier:
@@ -5587,11 +5587,11 @@ unsigned long long int
                 enumeration-constant
                 enumeration-constant = constant-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  The expression that defines the value of an enumeration constant shall be an integer
  constant expression that has a value representable as an int.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The identifiers in an enumerator list are declared as constants that have type int and
  may appear wherever such are permitted.<sup><a href="#note109"><b>109)</b></a></sup> An enumerator with = defines its
@@ -5627,7 +5627,7 @@ unsigned long long int
  
 <p><b> Forward references</b>: tags (<a href="#6.7.2.3">6.7.2.3</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note109" href="#note109">109)</a> Thus, the identifiers of enumeration constants declared in the same scope shall all be distinct from
  each other and from other identifiers declared in ordinary declarators.
 </small>
@@ -5636,7 +5636,7 @@ unsigned long long int
 </small>
 
 <h5><a name="6.7.2.3" href="#6.7.2.3">6.7.2.3 Tags</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  A specific type shall have its content defined at most once.
 <p><!--para 2 -->
@@ -5648,7 +5648,7 @@ unsigned long long int
          enum identifier
 </pre>
  without an enumerator list shall only appear after the type it specifies is complete.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  All declarations of structure, union, or enumerated types that have the same scope and
  use the same tag declare the same type. The type is incomplete<sup><a href="#note111"><b>111)</b></a></sup> until the closing brace
@@ -5753,7 +5753,7 @@ unsigned long long int
 <p><b> Forward references</b>: declarators (<a href="#6.7.5">6.7.5</a>), array declarators (<a href="#6.7.5.2">6.7.5.2</a>), type definitions
  (<a href="#6.7.7">6.7.7</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note111" href="#note111">111)</a> An incomplete type may only by used when the size of an object of that type is not needed. It is not
  needed, for example, when a typedef name is declared to be a specifier for a structure or union, or
  when a pointer to or a function returning a structure or union is being declared. (See incomplete types
@@ -5768,7 +5768,7 @@ unsigned long long int
 </small>
 
 <h4><a name="6.7.3" href="#6.7.3">6.7.3 Type qualifiers</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           type-qualifier:
@@ -5776,11 +5776,11 @@ unsigned long long int
                  restrict
                  volatile
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Types other than pointer types derived from object or incomplete types shall not be
  restrict-qualified.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The properties associated with qualified types are meaningful only for expressions that
  are lvalues.<sup><a href="#note114"><b>114)</b></a></sup>
@@ -5852,7 +5852,7 @@ unsigned long long int
 </pre>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note114" href="#note114">114)</a> The implementation may place a const object that is not volatile in a read-only region of
  storage. Moreover, the implementation need not allocate storage for such an object if its address is
  never used.
@@ -5988,7 +5988,7 @@ unsigned long long int
 </pre>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note119" href="#note119">119)</a> In other words, E depends on the value of P itself rather than on the value of an object referenced
  indirectly through P. For example, if identifier p has type (int **restrict), then the pointer
  expressions p and p+1 are based on the restricted pointer object designated by p, but the pointer
@@ -5996,13 +5996,13 @@ unsigned long long int
 </small>
 
 <h4><a name="6.7.4" href="#6.7.4">6.7.4 Function specifiers</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           function-specifier:
                  inline
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Function specifiers shall be used only in the declaration of an identifier for a function.
 <p><!--para 3 -->
@@ -6012,7 +6012,7 @@ unsigned long long int
 <p><!--para 4 -->
  In a hosted environment, the inline function specifier shall not appear in a declaration
  of main.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 5 -->
  A function declared with an inline function specifier is an inline function. The
  function specifier may appear more than once; the behavior is the same as if it appeared
@@ -6062,7 +6062,7 @@ unsigned long long int
  
 <!--page 126 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note120" href="#note120">120)</a> By using, for example, an alternative to the usual function call mechanism, such as ''inline
  substitution''. Inline substitution is not textual substitution, nor does it create a new function.
  Therefore, for example, the expansion of a macro used within the body of the function uses the
@@ -6080,7 +6080,7 @@ unsigned long long int
 </small>
 
 <h4><a name="6.7.5" href="#6.7.5">6.7.5 Declarators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           declarator:
@@ -6113,7 +6113,7 @@ unsigned long long int
                   identifier
                   identifier-list , identifier
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  Each declarator declares one identifier, and asserts that when an operand of the same
  form as the declarator appears in an expression, it designates a function or object with the
@@ -6147,7 +6147,7 @@ unsigned long long int
  then ident has the type specified by the declaration ''T D''. Thus, a declarator in
  parentheses is identical to the unparenthesized declarator, but the binding of complicated
  declarators may be altered by parentheses.
-<h6>Implementation limits</h6>
+<p><b>Implementation limits</b>
 <p><!--para 7 -->
  As discussed in <a href="#5.2.4.1">5.2.4.1</a>, an implementation may limit the number of pointer, array, and
  function declarators that modify an arithmetic, structure, union, or incomplete type, either
@@ -6155,7 +6155,7 @@ unsigned long long int
 <p><b> Forward references</b>: array declarators (<a href="#6.7.5.2">6.7.5.2</a>), type definitions (<a href="#6.7.7">6.7.7</a>).
 
 <h5><a name="6.7.5.1" href="#6.7.5.1">6.7.5.1 Pointer declarators</a></h5>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 1 -->
  If, in the declaration ''T D1'', D1 has the form
 <pre>
@@ -6190,7 +6190,7 @@ unsigned long long int
  
 
 <h5><a name="6.7.5.2" href="#6.7.5.2">6.7.5.2 Array declarators</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  In addition to optional type qualifiers and the keyword static, the [ and ] may delimit
  an expression or *. If they delimit an expression (which specifies the size of an array), the
@@ -6203,7 +6203,7 @@ unsigned long long int
  An ordinary identifier (as defined in <a href="#6.2.3">6.2.3</a>) that has a variably modified type shall have
  either block scope and no linkage or function prototype scope. If an identifier is declared
  to be an object with static storage duration, it shall not have a variable length array type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  If, in the declaration ''T D1'', D1 has one of the forms:
 <pre>
@@ -6306,14 +6306,14 @@ unsigned long long int
 <p><b> Forward references</b>:            function declarators (<a href="#6.7.5.3">6.7.5.3</a>), function definitions (<a href="#6.9.1">6.9.1</a>),
  initialization (<a href="#6.7.8">6.7.8</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note123" href="#note123">123)</a> When several ''array of'' specifications are adjacent, a multidimensional array is declared.
 </small>
 <p><small><a name="note124" href="#note124">124)</a> Thus, * can be used only in function declarations that are not definitions (see <a href="#6.7.5.3">6.7.5.3</a>).
 </small>
 
 <h5><a name="6.7.5.3" href="#6.7.5.3">6.7.5.3 Function declarators (including prototypes)</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  A function declarator shall not specify a return type that is a function type or an array
  type.
@@ -6325,7 +6325,7 @@ unsigned long long int
 <p><!--para 4 -->
  After adjustment, the parameters in a parameter type list in a function declarator that is
  part of a definition of that function shall not have incomplete type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 5 -->
  If, in the declaration ''T D1'', D1 has the form
 <pre>
@@ -6473,7 +6473,7 @@ unsigned long long int
 <p><b> Forward references</b>: function definitions (<a href="#6.9.1">6.9.1</a>), type names (<a href="#6.7.6">6.7.6</a>).
 <!--page 134 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note125" href="#note125">125)</a> The macros defined in the <a href="#7.15">&lt;stdarg.h&gt;</a> header (<a href="#7.15">7.15</a>) may be used to access arguments that
  correspond to the ellipsis.
 </small>
@@ -6483,7 +6483,7 @@ unsigned long long int
 </small>
 
 <h4><a name="6.7.6" href="#6.7.6">6.7.6 Type names</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           type-name:
@@ -6502,7 +6502,7 @@ unsigned long long int
                   direct-abstract-declarator<sub>opt</sub> [ * ]
                   direct-abstract-declarator<sub>opt</sub> ( parameter-type-list<sub>opt</sub> )
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  In several contexts, it is necessary to specify a type. This is accomplished using a type
  name, which is syntactically a declaration for a function or an object of that type that
@@ -6531,22 +6531,22 @@ unsigned long long int
  
 <!--page 135 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note128" href="#note128">128)</a> As indicated by the syntax, empty parentheses in a type name are interpreted as ''function with no
  parameter specification'', rather than redundant parentheses around the omitted identifier.
 </small>
 
 <h4><a name="6.7.7" href="#6.7.7">6.7.7 Type definitions</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           typedef-name:
                  identifier
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  If a typedef name specifies a variably modified type then it shall have block scope.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  In a declaration whose storage-class specifier is typedef, each declarator defines an
  identifier to be a typedef name that denotes the type specified for the identifier in the way
@@ -6644,7 +6644,7 @@ unsigned long long int
 </pre>
 
 <h4><a name="6.7.8" href="#6.7.8">6.7.8 Initialization</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           initializer:
@@ -6663,7 +6663,7 @@ unsigned long long int
                  [ constant-expression ]
                  . identifier
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  No initializer shall attempt to provide a value for an object not contained within the entity
  being initialized.
@@ -6692,7 +6692,7 @@ unsigned long long int
  then the current object (defined below) shall have structure or union type and the
  identifier shall be the name of a member of that type.
 <!--page 138 -->
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 8 -->
  An initializer specifies the initial value stored in an object.
 <p><!--para 9 -->
@@ -6963,7 +6963,7 @@ unsigned long long int
 <p><b> Forward references</b>: common definitions <a href="#7.17">&lt;stddef.h&gt;</a> (<a href="#7.17">7.17</a>).
 <!--page 143 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note129" href="#note129">129)</a> If the initializer list for a subaggregate or contained union does not begin with a left brace, its
  subobjects are initialized as usual, but the subaggregate or contained union does not become the
  current object: current objects are associated only with brace-enclosed initializer lists.
@@ -6981,7 +6981,7 @@ unsigned long long int
 </small>
 
 <h3><a name="6.8" href="#6.8">6.8 Statements and blocks</a></h3>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           statement:
@@ -6992,7 +6992,7 @@ unsigned long long int
                  iteration-statement
                  jump-statement
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A statement specifies an action to be performed. Except as indicated, statements are
  executed in sequence.
@@ -7014,7 +7014,7 @@ unsigned long long int
  (<a href="#6.8.4">6.8.4</a>), iteration statements (<a href="#6.8.5">6.8.5</a>), the return statement (<a href="#6.8.6.4">6.8.6.4</a>).
 
 <h4><a name="6.8.1" href="#6.8.1">6.8.1 Labeled statements</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           labeled-statement:
@@ -7022,14 +7022,14 @@ unsigned long long int
                  case constant-expression : statement
                  default : statement
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  A case or default label shall appear only in a switch statement. Further
  constraints on such labels are discussed under the switch statement.
 <!--page 144 -->
 <p><!--para 3 -->
  Label names shall be unique within a function.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  Any statement may be preceded by a prefix that declares an identifier as a label name.
  Labels in themselves do not alter the flow of control, which continues unimpeded across
@@ -7037,7 +7037,7 @@ unsigned long long int
 <p><b> Forward references</b>: the goto statement (<a href="#6.8.6.1">6.8.6.1</a>), the switch statement (<a href="#6.8.4.2">6.8.4.2</a>).
 
 <h4><a name="6.8.2" href="#6.8.2">6.8.2 Compound statement</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           compound-statement:
@@ -7049,18 +7049,18 @@ unsigned long long int
                   declaration
                   statement
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A compound statement is a block.
 
 <h4><a name="6.8.3" href="#6.8.3">6.8.3 Expression and null statements</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           expression-statement:
                  expression<sub>opt</sub> ;
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  The expression in an expression statement is evaluated as a void expression for its side
  effects.<sup><a href="#note134"><b>134)</b></a></sup>
@@ -7108,12 +7108,12 @@ unsigned long long int
  
 <p><b> Forward references</b>: iteration statements (<a href="#6.8.5">6.8.5</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note134" href="#note134">134)</a> Such as assignments, and function calls which have side effects.
 </small>
 
 <h4><a name="6.8.4" href="#6.8.4">6.8.4 Selection statements</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           selection-statement:
@@ -7121,7 +7121,7 @@ unsigned long long int
                   if ( expression ) statement else statement
                   switch ( expression ) statement
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A selection statement selects among a set of statements depending on the value of a
  controlling expression.
@@ -7131,10 +7131,10 @@ unsigned long long int
  subset of the scope of the selection statement.
 
 <h5><a name="6.8.4.1" href="#6.8.4.1">6.8.4.1 The if statement</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The controlling expression of an if statement shall have scalar type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  In both forms, the first substatement is executed if the expression compares unequal to 0.
  In the else form, the second substatement is executed if the expression compares equal
@@ -7146,7 +7146,7 @@ unsigned long long int
  syntax.
 
 <h5><a name="6.8.4.2" href="#6.8.4.2">6.8.4.2 The switch statement</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The controlling expression of a switch statement shall have integer type.
 <p><!--para 2 -->
@@ -7160,7 +7160,7 @@ unsigned long long int
  (Any enclosed switch statement may have a default label or case constant
  expressions with values that duplicate case constant expressions in the enclosing
  switch statement.)
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  A switch statement causes control to jump to, into, or past the statement that is the
  switch body, depending on the value of a controlling expression, and on the presence of a
@@ -7174,7 +7174,7 @@ unsigned long long int
  a default label, control jumps to the labeled statement. If no converted case constant
  expression matches and there is no default label, no part of the switch body is
  executed.
-<h6>Implementation limits</h6>
+<p><b>Implementation limits</b>
 <p><!--para 6 -->
  As discussed in <a href="#5.2.4.1">5.2.4.1</a>, the implementation may limit the number of case values in a
  switch statement.
@@ -7202,13 +7202,13 @@ unsigned long long int
  access an indeterminate value. Similarly, the call to the function f cannot be reached.
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note135" href="#note135">135)</a> That is, the declaration either precedes the switch statement, or it follows the last case or
  default label associated with the switch that is in the block containing the declaration.
 </small>
 
 <h4><a name="6.8.5" href="#6.8.5">6.8.5 Iteration statements</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           iteration-statement:
@@ -7217,13 +7217,13 @@ unsigned long long int
                   for ( expression<sub>opt</sub> ; expression<sub>opt</sub> ; expression<sub>opt</sub> ) statement
                   for ( declaration expression<sub>opt</sub> ; expression<sub>opt</sub> ) statement
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  The controlling expression of an iteration statement shall have scalar type.
 <p><!--para 3 -->
  The declaration part of a for statement shall only declare identifiers for objects having
  storage class auto or register.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  An iteration statement causes a statement called the loop body to be executed repeatedly
  until the controlling expression compares equal to 0. The repetition occurs regardless of
@@ -7238,7 +7238,7 @@ unsigned long long int
  
 <!--page 148 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note136" href="#note136">136)</a> Code jumped over is not executed. In particular, the controlling expression of a for or while
  statement is not evaluated before entering the loop body, nor is clause-1 of a for statement.
 </small>
@@ -7270,7 +7270,7 @@ unsigned long long int
  Both clause-1 and expression-3 can be omitted. An omitted expression-2 is replaced by a
  nonzero constant.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note137" href="#note137">137)</a> Thus, clause-1 specifies initialization for the loop, possibly declaring one or more variables for use in
  the loop; the controlling expression, expression-2, specifies an evaluation made before each iteration,
  such that execution of the loop continues until the expression compares equal to 0; and expression-3
@@ -7278,7 +7278,7 @@ unsigned long long int
 </small>
 
 <h4><a name="6.8.6" href="#6.8.6">6.8.6 Jump statements</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           jump-statement:
@@ -7287,7 +7287,7 @@ unsigned long long int
                  break ;
                  return expression<sub>opt</sub> ;
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A jump statement causes an unconditional jump to another place.
  
@@ -7297,12 +7297,12 @@ unsigned long long int
 <!--page 149 -->
 
 <h5><a name="6.8.6.1" href="#6.8.6.1">6.8.6.1 The goto statement</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The identifier in a goto statement shall name a label located somewhere in the enclosing
  function. A goto statement shall not jump from outside the scope of an identifier having
  a variably modified type to inside the scope of that identifier.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A goto statement causes an unconditional jump to the statement prefixed by the named
  label in the enclosing function.
@@ -7354,10 +7354,10 @@ unsigned long long int
  
 
 <h5><a name="6.8.6.2" href="#6.8.6.2">6.8.6.2 The continue statement</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  A continue statement shall appear only in or as a loop body.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A continue statement causes a jump to the loop-continuation portion of the smallest
  enclosing iteration statement; that is, to the end of the loop body. More precisely, in each
@@ -7373,15 +7373,15 @@ unsigned long long int
  unless the continue statement shown is in an enclosed iteration statement (in which
  case it is interpreted within that statement), it is equivalent to goto contin;.<sup><a href="#note138"><b>138)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note138" href="#note138">138)</a> Following the contin: label is a null statement.
 </small>
 
 <h5><a name="6.8.6.3" href="#6.8.6.3">6.8.6.3 The break statement</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  A break statement shall appear only in or as a switch body or loop body.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A break statement terminates execution of the smallest enclosing switch or iteration
  statement.
@@ -7391,12 +7391,12 @@ unsigned long long int
 <!--page 151 -->
 
 <h5><a name="6.8.6.4" href="#6.8.6.4">6.8.6.4 The return statement</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  A return statement with an expression shall not appear in a function whose return type
  is void. A return statement without an expression shall only appear in a function
  whose return type is void.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A return statement terminates execution of the current function and returns control to
  its caller. A function may have any number of return statements.
@@ -7434,7 +7434,7 @@ unsigned long long int
  
 <!--page 152 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note139" href="#note139">139)</a> The return statement is not an assignment. The overlap restriction of subclause <a href="#6.5.16.1">6.5.16.1</a> does not
  apply to the case of function return. The representation of floating-point values may have wider range
  or precision and is determined by FLT_EVAL_METHOD. A cast may be used to remove this extra
@@ -7442,7 +7442,7 @@ unsigned long long int
 </small>
 
 <h3><a name="6.9" href="#6.9">6.9 External definitions</a></h3>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           translation-unit:
@@ -7452,7 +7452,7 @@ unsigned long long int
                  function-definition
                  declaration
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  The storage-class specifiers auto and register shall not appear in the declaration
  specifiers in an external declaration.
@@ -7462,7 +7462,7 @@ unsigned long long int
  linkage is used in an expression (other than as a part of the operand of a sizeof
  operator whose result is an integer constant), there shall be exactly one external definition
  for the identifier in the translation unit.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  As discussed in <a href="#5.1.1.1">5.1.1.1</a>, the unit of program text after preprocessing is a translation unit,
  which consists of a sequence of external declarations. These are described as ''external''
@@ -7482,13 +7482,13 @@ unsigned long long int
  
 <!--page 153 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note140" href="#note140">140)</a> Thus, if an identifier declared with external linkage is not used in an expression, there need be no
  external definition for it.
 </small>
 
 <h4><a name="6.9.1" href="#6.9.1">6.9.1 Function definitions</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           function-definition:
@@ -7497,7 +7497,7 @@ unsigned long long int
                  declaration
                  declaration-list declaration
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  The identifier declared in a function definition (which is the name of the function) shall
  have a function type, as specified by the declarator portion of the function definition.<sup><a href="#note141"><b>141)</b></a></sup>
@@ -7523,7 +7523,7 @@ unsigned long long int
  
  
 <!--page 154 -->
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 7 -->
  The declarator in a function definition specifies the name of the function being defined
  and the identifiers of its parameters. If the declarator includes a parameter type list, the
@@ -7607,7 +7607,7 @@ unsigned long long int
 </pre>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note141" href="#note141">141)</a> The intent is that the type category in a function definition cannot be inherited from a typedef:
 
 <pre>
@@ -7628,7 +7628,7 @@ unsigned long long int
 </small>
 
 <h4><a name="6.9.2" href="#6.9.2">6.9.2 External object definitions</a></h4>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 1 -->
  If the declaration of an identifier for an object has file scope and an initializer, the
  declaration is an external definition for the identifier.
@@ -7674,7 +7674,7 @@ unsigned long long int
 <!--page 157 -->
 
 <h3><a name="6.10" href="#6.10">6.10 Preprocessing directives</a></h3>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <!--page 158 -->
 <pre>
@@ -7730,7 +7730,7 @@ unsigned long long int
           new-line:
                  the new-line character
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  A preprocessing directive consists of a sequence of preprocessing tokens that satisfies the
  following constraints: The first token in the sequence is a # preprocessing token that (at
@@ -7749,14 +7749,14 @@ unsigned long long int
  When in a group that is skipped (<a href="#6.10.1">6.10.1</a>), the directive syntax is relaxed to allow any
  sequence of preprocessing tokens to occur between the directive name and the following
  new-line character.
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 5 -->
  The only white-space characters that shall appear between preprocessing tokens within a
  preprocessing directive (from just after the introducing # preprocessing token through
  just before the terminating new-line character) are space and horizontal-tab (including
  spaces that have replaced comments or possibly other white-space characters in
  translation phase 3).
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 6 -->
  The implementation can process and skip sections of source files conditionally, include
  other source files, and replace macros. These capabilities are called preprocessing,
@@ -7775,14 +7775,14 @@ unsigned long long int
  replaced.
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note143" href="#note143">143)</a> Thus, preprocessing directives are commonly called ''lines''. These ''lines'' have no other syntactic
  significance, as all white space is equivalent except in certain situations during preprocessing (see the
  # character string literal creation operator in <a href="#6.10.3.2">6.10.3.2</a>, for example).
 </small>
 
 <h4><a name="6.10.1" href="#6.10.1">6.10.1 Conditional inclusion</a></h4>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The expression that controls conditional inclusion shall be an integer constant expression
  except that: it shall not contain a cast; identifiers (including those lexically identical to
@@ -7807,7 +7807,7 @@ unsigned long long int
  Each preprocessing token that remains (in the list of preprocessing tokens that will
  become the controlling expression) after all macro replacements have occurred shall be in
  the lexical form of a token (<a href="#6.4">6.4</a>).
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  Preprocessing directives of the forms
 <pre>
@@ -7859,7 +7859,7 @@ unsigned long long int
 <p><b> Forward references</b>: macro replacement (<a href="#6.10.3">6.10.3</a>), source file inclusion (<a href="#6.10.2">6.10.2</a>), largest
  integer types (<a href="#7.18.1.5">7.18.1.5</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note144" href="#note144">144)</a> Because the controlling constant expression is evaluated during translation phase 4, all identifiers
  either are or are not macro names -- there simply are no keywords, enumeration constants, etc.
 </small>
@@ -7881,11 +7881,11 @@ unsigned long long int
 </small>
 
 <h4><a name="6.10.2" href="#6.10.2">6.10.2 Source file inclusion</a></h4>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  A #include directive shall identify a header or source file that can be processed by the
  implementation.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A preprocessing directive of the form
 <pre>
@@ -7962,13 +7962,13 @@ unsigned long long int
  
 <p><b> Forward references</b>: macro replacement (<a href="#6.10.3">6.10.3</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note148" href="#note148">148)</a> Note that adjacent string literals are not concatenated into a single string literal (see the translation
  phases in <a href="#5.1.1.2">5.1.1.2</a>); thus, an expansion that results in two string literals is an invalid directive.
 </small>
 
 <h4><a name="6.10.3" href="#6.10.3">6.10.3 Macro replacement</a></h4>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  Two replacement lists are identical if and only if the preprocessing tokens in both have
  the same number, ordering, spelling, and white-space separation, where all white-space
@@ -7997,7 +7997,7 @@ unsigned long long int
 <p><!--para 6 -->
  A parameter identifier in a function-like macro shall be uniquely declared within its
  scope.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 7 -->
  The identifier immediately following the define is called the macro name. There is one
  name space for macro names. Any white-space characters preceding or following the
@@ -8051,7 +8051,7 @@ unsigned long long int
  merger, the number of arguments is one more than the number of parameters in the macro
  definition (excluding the ...).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note149" href="#note149">149)</a> Since, by macro-replacement time, all character constants and string literals are preprocessing tokens,
  not sequences possibly containing identifier-like subsequences (see <a href="#5.1.1.2">5.1.1.2</a>, translation phases), they
  are never scanned for macro names or parameters.
@@ -8074,11 +8074,11 @@ unsigned long long int
  replace it.
 
 <h5><a name="6.10.3.2" href="#6.10.3.2">6.10.3.2 The # operator</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  Each # preprocessing token in the replacement list for a function-like macro shall be
  followed by a parameter as the next preprocessing token in the replacement list.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  If, in the replacement list, a parameter is immediately preceded by a # preprocessing
  token, both are replaced by a single character string literal preprocessing token that
@@ -8098,11 +8098,11 @@ unsigned long long int
 <!--page 166 -->
 
 <h5><a name="6.10.3.3" href="#6.10.3.3">6.10.3.3 The ## operator</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  A ## preprocessing token shall not occur at the beginning or at the end of a replacement
  list for either form of macro definition.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  If, in the replacement list of a function-like macro, a parameter is immediately preceded
  or followed by a ## preprocessing token, the parameter is replaced by the corresponding
@@ -8144,7 +8144,7 @@ unsigned long long int
  
 <!--page 167 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note151" href="#note151">151)</a> Placemarker preprocessing tokens do not appear in the syntax because they are temporary entities that
  exist only within translation phase 4.
 </small>
@@ -8326,10 +8326,10 @@ unsigned long long int
  
 
 <h4><a name="6.10.4" href="#6.10.4">6.10.4 Line control</a></h4>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The string literal of a #line directive, if present, shall be a character string literal.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  The line number of the current source line is one greater than the number of new-line
  characters read or introduced in translation phase 1 (<a href="#5.1.1.2">5.1.1.2</a>) while processing the source
@@ -8363,7 +8363,7 @@ unsigned long long int
 <!--page 171 -->
 
 <h4><a name="6.10.5" href="#6.10.5">6.10.5 Error directive</a></h4>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 1 -->
  A preprocessing directive of the form
 <pre>
@@ -8373,7 +8373,7 @@ unsigned long long int
  sequence of preprocessing tokens.
 
 <h4><a name="6.10.6" href="#6.10.6">6.10.6 Pragma directive</a></h4>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 1 -->
  A preprocessing directive of the form
 <pre>
@@ -8404,7 +8404,7 @@ unsigned long long int
  
 <!--page 172 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note152" href="#note152">152)</a> An implementation is not required to perform macro replacement in pragmas, but it is permitted
  except for in standard pragmas (where STDC immediately follows pragma). If the result of macro
  replacement in a non-standard pragma has the same form as a standard pragma, the behavior is still
@@ -8415,7 +8415,7 @@ unsigned long long int
 </small>
 
 <h4><a name="6.10.7" href="#6.10.7">6.10.7 Null directive</a></h4>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 1 -->
  A preprocessing directive of the form
 <pre>
@@ -8481,7 +8481,7 @@ unsigned long long int
  in any standard header.
 <p><b> Forward references</b>: the asctime function (<a href="#7.23.3.1">7.23.3.1</a>), standard headers (<a href="#7.1.2">7.1.2</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note154" href="#note154">154)</a> See ''future language directions'' (<a href="#6.11.9">6.11.9</a>).
 </small>
 <p><small><a name="note155" href="#note155">155)</a> The presumed source file name and line number can be changed by the #line directive.
@@ -8492,7 +8492,7 @@ unsigned long long int
 </small>
 
 <h4><a name="6.10.9" href="#6.10.9">6.10.9 Pragma operator</a></h4>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 1 -->
  A unary operator expression of the form:
 <pre>
@@ -8609,7 +8609,7 @@ unsigned long long int
  
 <!--page 177 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note157" href="#note157">157)</a> The functions that make use of the decimal-point character are the numeric conversion functions
  (<a href="#7.20.1">7.20.1</a>, <a href="#7.24.4.1">7.24.4.1</a>) and the formatted input/output functions (<a href="#7.19.6">7.19.6</a>, <a href="#7.24.2">7.24.2</a>).
 </small>
@@ -8666,7 +8666,7 @@ unsigned long long int
  
 <!--page 178 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note159" href="#note159">159)</a> A header is not necessarily a source file, nor are the &lt; and &gt; delimited sequences in header names
  necessarily valid source file names.
 </small>
@@ -8700,7 +8700,7 @@ unsigned long long int
  If the program removes (with #undef) any macro definition of an identifier in the first
  group listed above, the behavior is undefined.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note160" href="#note160">160)</a> The list of reserved identifiers with external linkage includes errno, math_errhandling,
  setjmp, and va_end.
 </small>
@@ -8782,7 +8782,7 @@ unsigned long long int
 </pre>
 </ul>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note161" href="#note161">161)</a> This means that an implementation shall provide an actual function for each library function, even if it
  also provides a macro for that function.
 </small>
@@ -8832,13 +8832,13 @@ unsigned long long int
 <h4><a name="7.2.1" href="#7.2.1">7.2.1 Program diagnostics</a></h4>
 
 <h5><a name="7.2.1.1" href="#7.2.1.1">7.2.1.1 The assert macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.2">&lt;assert.h&gt;</a>
          void assert(scalar expression);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The assert macro puts diagnostic tests into programs; it expands to a void expression.
  When it is executed, if expression (which shall have a scalar type) is false (that is,
@@ -8848,7 +8848,7 @@ unsigned long long int
  the preprocessing macros __FILE__ and __LINE__ and of the identifier
  __func__) on the standard error stream in an implementation-defined format.<sup><a href="#note165"><b>165)</b></a></sup> It
  then calls the abort function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The assert macro returns no value.
 <p><b> Forward references</b>: the abort function (<a href="#7.20.4.1">7.20.4.1</a>).
@@ -8858,7 +8858,7 @@ unsigned long long int
  
 <!--page 182 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note165" href="#note165">165)</a> The message written might be of the form:
  Assertion failed: expression, function abc, file xyz, line nnn.
 </small>
@@ -8912,7 +8912,7 @@ unsigned long long int
  
 <!--page 183 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note166" href="#note166">166)</a> See ''future library directions'' (<a href="#7.26.1">7.26.1</a>).
 </small>
 <p><small><a name="note167" href="#note167">167)</a> The imaginary unit is a number i such that i<sup>2</sup>  = -1.
@@ -8945,13 +8945,13 @@ unsigned long long int
  so the cut maps to the positive imaginary axis.
 
 <h4><a name="7.3.4" href="#7.3.4">7.3.4 The CX_LIMITED_RANGE pragma</a></h4>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.3">&lt;complex.h&gt;</a>
           #pragma STDC CX_LIMITED_RANGE on-off-switch
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The usual mathematical formulas for complex multiply, divide, and absolute value are
  problematic because of their treatment of infinities and because of undue overflow and
@@ -8970,7 +8970,7 @@ unsigned long long int
  compound statement. If this pragma is used in any other context, the behavior is
  undefined. The default state for the pragma is ''off''.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note169" href="#note169">169)</a> The purpose of the pragma is to allow the implementation to use the formulas:
 
 <pre>
@@ -8984,7 +8984,7 @@ unsigned long long int
 <h4><a name="7.3.5" href="#7.3.5">7.3.5 Trigonometric functions</a></h4>
 
 <h5><a name="7.3.5.1" href="#7.3.5.1">7.3.5.1 The cacos functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -8992,18 +8992,18 @@ unsigned long long int
         float complex cacosf(float complex z);
         long double complex cacosl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cacos functions compute the complex arc cosine of z, with branch cuts outside the
  interval [-1, +1] along the real axis.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cacos functions return the complex arc cosine value, in the range of a strip
  mathematically unbounded along the imaginary axis and in the interval [0, pi ] along the
  real axis.
 
 <h5><a name="7.3.5.2" href="#7.3.5.2">7.3.5.2 The casin functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -9011,11 +9011,11 @@ unsigned long long int
         float complex casinf(float complex z);
         long double complex casinl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The casin functions compute the complex arc sine of z, with branch cuts outside the
  interval [-1, +1] along the real axis.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The casin functions return the complex arc sine value, in the range of a strip
  mathematically unbounded along the imaginary axis and in the interval [-pi /2, +pi /2]
@@ -9023,7 +9023,7 @@ unsigned long long int
 <!--page 185 -->
 
 <h5><a name="7.3.5.3" href="#7.3.5.3">7.3.5.3 The catan functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -9031,18 +9031,18 @@ unsigned long long int
         float complex catanf(float complex z);
         long double complex catanl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The catan functions compute the complex arc tangent of z, with branch cuts outside the
  interval [-i, +i] along the imaginary axis.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The catan functions return the complex arc tangent value, in the range of a strip
  mathematically unbounded along the imaginary axis and in the interval [-pi /2, +pi /2]
  along the real axis.
 
 <h5><a name="7.3.5.4" href="#7.3.5.4">7.3.5.4 The ccos functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -9050,15 +9050,15 @@ unsigned long long int
         float complex ccosf(float complex z);
         long double complex ccosl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ccos functions compute the complex cosine of z.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The ccos functions return the complex cosine value.
 
 <h5><a name="7.3.5.5" href="#7.3.5.5">7.3.5.5 The csin functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -9066,16 +9066,16 @@ unsigned long long int
         float complex csinf(float complex z);
         long double complex csinl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The csin functions compute the complex sine of z.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The csin functions return the complex sine value.
 <!--page 186 -->
 
 <h5><a name="7.3.5.6" href="#7.3.5.6">7.3.5.6 The ctan functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -9083,17 +9083,17 @@ unsigned long long int
         float complex ctanf(float complex z);
         long double complex ctanl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ctan functions compute the complex tangent of z.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The ctan functions return the complex tangent value.
 
 <h4><a name="7.3.6" href="#7.3.6">7.3.6 Hyperbolic functions</a></h4>
 
 <h5><a name="7.3.6.1" href="#7.3.6.1">7.3.6.1 The cacosh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -9101,18 +9101,18 @@ unsigned long long int
         float complex cacoshf(float complex z);
         long double complex cacoshl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cacosh functions compute the complex arc hyperbolic cosine of z, with a branch
  cut at values less than 1 along the real axis.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cacosh functions return the complex arc hyperbolic cosine value, in the range of a
  half-strip of non-negative values along the real axis and in the interval [-ipi , +ipi ] along
  the imaginary axis.
 
 <h5><a name="7.3.6.2" href="#7.3.6.2">7.3.6.2 The casinh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -9120,19 +9120,19 @@ unsigned long long int
         float complex casinhf(float complex z);
         long double complex casinhl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The casinh functions compute the complex arc hyperbolic sine of z, with branch cuts
  outside the interval [-i, +i] along the imaginary axis.
 <!--page 187 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The casinh functions return the complex arc hyperbolic sine value, in the range of a
  strip mathematically unbounded along the real axis and in the interval [-ipi /2, +ipi /2]
  along the imaginary axis.
 
 <h5><a name="7.3.6.3" href="#7.3.6.3">7.3.6.3 The catanh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -9140,18 +9140,18 @@ unsigned long long int
         float complex catanhf(float complex z);
         long double complex catanhl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The catanh functions compute the complex arc hyperbolic tangent of z, with branch
  cuts outside the interval [-1, +1] along the real axis.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The catanh functions return the complex arc hyperbolic tangent value, in the range of a
  strip mathematically unbounded along the real axis and in the interval [-ipi /2, +ipi /2]
  along the imaginary axis.
 
 <h5><a name="7.3.6.4" href="#7.3.6.4">7.3.6.4 The ccosh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -9159,15 +9159,15 @@ unsigned long long int
         float complex ccoshf(float complex z);
         long double complex ccoshl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ccosh functions compute the complex hyperbolic cosine of z.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The ccosh functions return the complex hyperbolic cosine value.
 
 <h5><a name="7.3.6.5" href="#7.3.6.5">7.3.6.5 The csinh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <!--page 188 -->
 <pre>
@@ -9176,15 +9176,15 @@ unsigned long long int
         float complex csinhf(float complex z);
         long double complex csinhl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The csinh functions compute the complex hyperbolic sine of z.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The csinh functions return the complex hyperbolic sine value.
 
 <h5><a name="7.3.6.6" href="#7.3.6.6">7.3.6.6 The ctanh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -9192,17 +9192,17 @@ unsigned long long int
         float complex ctanhf(float complex z);
         long double complex ctanhl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ctanh functions compute the complex hyperbolic tangent of z.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The ctanh functions return the complex hyperbolic tangent value.
 
 <h4><a name="7.3.7" href="#7.3.7">7.3.7 Exponential and logarithmic functions</a></h4>
 
 <h5><a name="7.3.7.1" href="#7.3.7.1">7.3.7.1 The cexp functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -9210,15 +9210,15 @@ unsigned long long int
         float complex cexpf(float complex z);
         long double complex cexpl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cexp functions compute the complex base-e exponential of z.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cexp functions return the complex base-e exponential value.
 
 <h5><a name="7.3.7.2" href="#7.3.7.2">7.3.7.2 The clog functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <!--page 189 -->
 <pre>
@@ -9227,11 +9227,11 @@ unsigned long long int
         float complex clogf(float complex z);
         long double complex clogl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The clog functions compute the complex natural (base-e) logarithm of z, with a branch
  cut along the negative real axis.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The clog functions return the complex natural logarithm value, in the range of a strip
  mathematically unbounded along the real axis and in the interval [-ipi , +ipi ] along the
@@ -9240,7 +9240,7 @@ unsigned long long int
 <h4><a name="7.3.8" href="#7.3.8">7.3.8 Power and absolute-value functions</a></h4>
 
 <h5><a name="7.3.8.1" href="#7.3.8.1">7.3.8.1 The cabs functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -9248,16 +9248,16 @@ unsigned long long int
         float cabsf(float complex z);
         long double cabsl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cabs functions compute the complex absolute value (also called norm, modulus, or
  magnitude) of z.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cabs functions return the complex absolute value.
 
 <h5><a name="7.3.8.2" href="#7.3.8.2">7.3.8.2 The cpow functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -9266,17 +9266,17 @@ unsigned long long int
         long double complex cpowl(long double complex x,
              long double complex y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cpow functions compute the complex power function xy , with a branch cut for the
  first parameter along the negative real axis.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cpow functions return the complex power function value.
 <!--page 190 -->
 
 <h5><a name="7.3.8.3" href="#7.3.8.3">7.3.8.3 The csqrt functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -9284,11 +9284,11 @@ unsigned long long int
         float complex csqrtf(float complex z);
         long double complex csqrtl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The csqrt functions compute the complex square root of z, with a branch cut along the
  negative real axis.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The csqrt functions return the complex square root value, in the range of the right half-
  plane (including the imaginary axis).
@@ -9296,7 +9296,7 @@ unsigned long long int
 <h4><a name="7.3.9" href="#7.3.9">7.3.9 Manipulation functions</a></h4>
 
 <h5><a name="7.3.9.1" href="#7.3.9.1">7.3.9.1 The carg functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -9304,16 +9304,16 @@ unsigned long long int
         float cargf(float complex z);
         long double cargl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The carg functions compute the argument (also called phase angle) of z, with a branch
  cut along the negative real axis.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The carg functions return the value of the argument in the interval [-pi , +pi ].
 
 <h5><a name="7.3.9.2" href="#7.3.9.2">7.3.9.2 The cimag functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <!--page 191 -->
 <pre>
@@ -9322,19 +9322,19 @@ unsigned long long int
         float cimagf(float complex z);
         long double cimagl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cimag functions compute the imaginary part of z.<sup><a href="#note170"><b>170)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cimag functions return the imaginary part value (as a real).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note170" href="#note170">170)</a> For a variable z of complex type, z == creal(z) + cimag(z)*I.
 </small>
 
 <h5><a name="7.3.9.3" href="#7.3.9.3">7.3.9.3 The conj functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -9342,16 +9342,16 @@ unsigned long long int
         float complex conjf(float complex z);
         long double complex conjl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The conj functions compute the complex conjugate of z, by reversing the sign of its
  imaginary part.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The conj functions return the complex conjugate value.
 
 <h5><a name="7.3.9.4" href="#7.3.9.4">7.3.9.4 The cproj functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -9359,7 +9359,7 @@ unsigned long long int
         float complex cprojf(float complex z);
         long double complex cprojl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cproj functions compute a projection of z onto the Riemann sphere: z projects to
  z except that all complex infinities (even those with one infinite part and one NaN part)
@@ -9368,7 +9368,7 @@ unsigned long long int
 <pre>
         INFINITY + I * copysign(0.0, cimag(z))
 </pre>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cproj functions return the value of the projection onto the Riemann sphere.
  
@@ -9378,7 +9378,7 @@ unsigned long long int
 <!--page 192 -->
 
 <h5><a name="7.3.9.5" href="#7.3.9.5">7.3.9.5 The creal functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -9386,10 +9386,10 @@ unsigned long long int
         float crealf(float complex z);
         long double creall(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The creal functions compute the real part of z.<sup><a href="#note171"><b>171)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The creal functions return the real part value.
  
@@ -9398,7 +9398,7 @@ unsigned long long int
  
 <!--page 193 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note171" href="#note171">171)</a> For a variable z of complex type, z == creal(z) + cimag(z)*I.
 </small>
 
@@ -9418,7 +9418,7 @@ unsigned long long int
  characters.<sup><a href="#note173"><b>173)</b></a></sup> All letters and digits are printing characters.
 <p><b> Forward references</b>: EOF (<a href="#7.19.1">7.19.1</a>), localization (<a href="#7.11">7.11</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note172" href="#note172">172)</a> See ''future library directions'' (<a href="#7.26.2">7.26.2</a>).
 </small>
 <p><small><a name="note173" href="#note173">173)</a> In an implementation that uses the seven-bit US ASCII character set, the printing characters are those
@@ -9432,24 +9432,24 @@ unsigned long long int
  argument c conforms to that in the description of the function.
 
 <h5><a name="7.4.1.1" href="#7.4.1.1">7.4.1.1 The isalnum function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.4">&lt;ctype.h&gt;</a>
           int isalnum(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isalnum function tests for any character for which isalpha or isdigit is true.
 
 <h5><a name="7.4.1.2" href="#7.4.1.2">7.4.1.2 The isalpha function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.4">&lt;ctype.h&gt;</a>
           int isalpha(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isalpha function tests for any character for which isupper or islower is true,
  or any character that is one of a locale-specific set of alphabetic characters for which
@@ -9460,19 +9460,19 @@ unsigned long long int
  none of iscntrl, isdigit, ispunct, or isspace is true.<sup><a href="#note174"><b>174)</b></a></sup> In the "C" locale,
  isalpha returns true only for the characters for which isupper or islower is true.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note174" href="#note174">174)</a> The functions islower and isupper test true or false separately for each of these additional
  characters; all four combinations are possible.
 </small>
 
 <h5><a name="7.4.1.3" href="#7.4.1.3">7.4.1.3 The isblank function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.4">&lt;ctype.h&gt;</a>
          int isblank(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isblank function tests for any character that is a standard blank character or is one
  of a locale-specific set of characters for which isspace is true and that is used to
@@ -9481,29 +9481,29 @@ unsigned long long int
  for the standard blank characters.
 
 <h5><a name="7.4.1.4" href="#7.4.1.4">7.4.1.4 The iscntrl function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.4">&lt;ctype.h&gt;</a>
          int iscntrl(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iscntrl function tests for any control character.
 
 <h5><a name="7.4.1.5" href="#7.4.1.5">7.4.1.5 The isdigit function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.4">&lt;ctype.h&gt;</a>
          int isdigit(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isdigit function tests for any decimal-digit character (as defined in <a href="#5.2.1">5.2.1</a>).
 
 <h5><a name="7.4.1.6" href="#7.4.1.6">7.4.1.6 The isgraph function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.4">&lt;ctype.h&gt;</a>
@@ -9514,18 +9514,18 @@ unsigned long long int
  
  
 <!--page 195 -->
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isgraph function tests for any printing character except space (' ').
 
 <h5><a name="7.4.1.7" href="#7.4.1.7">7.4.1.7 The islower function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.4">&lt;ctype.h&gt;</a>
         int islower(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The islower function tests for any character that is a lowercase letter or is one of a
  locale-specific set of characters for which none of iscntrl, isdigit, ispunct, or
@@ -9533,24 +9533,24 @@ unsigned long long int
  letters (as defined in <a href="#5.2.1">5.2.1</a>).
 
 <h5><a name="7.4.1.8" href="#7.4.1.8">7.4.1.8 The isprint function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.4">&lt;ctype.h&gt;</a>
         int isprint(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isprint function tests for any printing character including space (' ').
 
 <h5><a name="7.4.1.9" href="#7.4.1.9">7.4.1.9 The ispunct function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.4">&lt;ctype.h&gt;</a>
         int ispunct(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ispunct function tests for any printing character that is one of a locale-specific set
  of punctuation characters for which neither isspace nor isalnum is true. In the "C"
@@ -9558,13 +9558,13 @@ unsigned long long int
  nor isalnum is true.
 
 <h5><a name="7.4.1.10" href="#7.4.1.10">7.4.1.10 The isspace function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.4">&lt;ctype.h&gt;</a>
         int isspace(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isspace function tests for any character that is a standard white-space character or
  is one of a locale-specific set of characters for which isalnum is false. The standard
@@ -9574,13 +9574,13 @@ unsigned long long int
  "C" locale, isspace returns true only for the standard white-space characters.
 
 <h5><a name="7.4.1.11" href="#7.4.1.11">7.4.1.11 The isupper function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.4">&lt;ctype.h&gt;</a>
         int isupper(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isupper function tests for any character that is an uppercase letter or is one of a
  locale-specific set of characters for which none of iscntrl, isdigit, ispunct, or
@@ -9588,29 +9588,29 @@ unsigned long long int
  letters (as defined in <a href="#5.2.1">5.2.1</a>).
 
 <h5><a name="7.4.1.12" href="#7.4.1.12">7.4.1.12 The isxdigit function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.4">&lt;ctype.h&gt;</a>
         int isxdigit(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isxdigit function tests for any hexadecimal-digit character (as defined in <a href="#6.4.4.1">6.4.4.1</a>).
 
 <h4><a name="7.4.2" href="#7.4.2">7.4.2 Character case mapping functions</a></h4>
 
 <h5><a name="7.4.2.1" href="#7.4.2.1">7.4.2.1 The tolower function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.4">&lt;ctype.h&gt;</a>
         int tolower(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The tolower function converts an uppercase letter to a corresponding lowercase letter.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If the argument is a character for which isupper is true and there are one or more
  corresponding characters, as specified by the current locale, for which islower is true,
@@ -9619,16 +9619,16 @@ unsigned long long int
 <!--page 197 -->
 
 <h5><a name="7.4.2.2" href="#7.4.2.2">7.4.2.2 The toupper function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.4">&lt;ctype.h&gt;</a>
         int toupper(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The toupper function converts a lowercase letter to a corresponding uppercase letter.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If the argument is a character for which islower is true and there are one or more
  corresponding characters, as specified by the current locale, for which isupper is true,
@@ -9671,7 +9671,7 @@ unsigned long long int
  
 <!--page 199 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note175" href="#note175">175)</a> The macro errno need not be the identifier of an object. It might expand to a modifiable lvalue
  resulting from a function call (for example, *errno()).
 </small>
@@ -9777,7 +9777,7 @@ unsigned long long int
  FE_ and an uppercase letter, and having type ''pointer to const-qualified fenv_t'', may
  also be specified by the implementation.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note178" href="#note178">178)</a> This header is designed to support the floating-point exception status flags and directed-rounding
  control modes required by IEC 60559, and other similar floating-point state information. Also it is
  designed to facilitate code portability among all systems.
@@ -9799,13 +9799,13 @@ unsigned long long int
 </small>
 
 <h4><a name="7.6.1" href="#7.6.1">7.6.1 The FENV_ACCESS pragma</a></h4>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.6">&lt;fenv.h&gt;</a>
           #pragma STDC FENV_ACCESS on-off-switch
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The FENV_ACCESS pragma provides a means to inform the implementation when a
  program might access the floating-point environment to test floating-point status flags or
@@ -9851,7 +9851,7 @@ unsigned long long int
  contain an appropriately placed invocation of #pragma STDC FENV_ACCESS ON.<sup><a href="#note185"><b>185)</b></a></sup>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note184" href="#note184">184)</a> The purpose of the FENV_ACCESS pragma is to allow certain optimizations that could subvert flag
  tests and mode changes (e.g., global common subexpression elimination, code motion, and constant
  folding). In general, if the state of FENV_ACCESS is ''off'', the translator can assume that default
@@ -9870,7 +9870,7 @@ unsigned long long int
  FE_OVERFLOW | FE_INEXACT. For other argument values the behavior of these
  functions is undefined.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note186" href="#note186">186)</a> The functions fetestexcept, feraiseexcept, and feclearexcept support the basic
  abstraction of flags that are either set or clear. An implementation may endow floating-point status
  flags with more information -- for example, the address of the code which first raised the floating-
@@ -9879,17 +9879,17 @@ unsigned long long int
 </small>
 
 <h5><a name="7.6.2.1" href="#7.6.2.1">7.6.2.1 The feclearexcept function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.6">&lt;fenv.h&gt;</a>
          int feclearexcept(int excepts);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The feclearexcept function attempts to clear the supported floating-point exceptions
  represented by its argument.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The feclearexcept function returns zero if the excepts argument is zero or if all
  the specified exceptions were successfully cleared. Otherwise, it returns a nonzero value.
@@ -9898,38 +9898,38 @@ unsigned long long int
 <!--page 203 -->
 
 <h5><a name="7.6.2.2" href="#7.6.2.2">7.6.2.2 The fegetexceptflag function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.6">&lt;fenv.h&gt;</a>
           int fegetexceptflag(fexcept_t *flagp,
                int excepts);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fegetexceptflag function attempts to store an implementation-defined
  representation of the states of the floating-point status flags indicated by the argument
  excepts in the object pointed to by the argument flagp.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fegetexceptflag function returns zero if the representation was successfully
  stored. Otherwise, it returns a nonzero value.
 
 <h5><a name="7.6.2.3" href="#7.6.2.3">7.6.2.3 The feraiseexcept function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.6">&lt;fenv.h&gt;</a>
           int feraiseexcept(int excepts);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The feraiseexcept function attempts to raise the supported floating-point exceptions
  represented by its argument.<sup><a href="#note187"><b>187)</b></a></sup> The order in which these floating-point exceptions are
  raised is unspecified, except as stated in <a href="#F.7.6">F.7.6</a>. Whether the feraiseexcept function
  additionally raises the ''inexact'' floating-point exception whenever it raises the
  ''overflow'' or ''underflow'' floating-point exception is implementation-defined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The feraiseexcept function returns zero if the excepts argument is zero or if all
  the specified exceptions were successfully raised. Otherwise, it returns a nonzero value.
@@ -9939,21 +9939,21 @@ unsigned long long int
  
 <!--page 204 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note187" href="#note187">187)</a> The effect is intended to be similar to that of floating-point exceptions raised by arithmetic operations.
  Hence, enabled traps for floating-point exceptions raised by this function are taken. The specification
  in <a href="#F.7.6">F.7.6</a> is in the same spirit.
 </small>
 
 <h5><a name="7.6.2.4" href="#7.6.2.4">7.6.2.4 The fesetexceptflag function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.6">&lt;fenv.h&gt;</a>
          int fesetexceptflag(const fexcept_t *flagp,
               int excepts);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fesetexceptflag function attempts to set the floating-point status flags
  indicated by the argument excepts to the states stored in the object pointed to by
@@ -9961,25 +9961,25 @@ unsigned long long int
  fegetexceptflag whose second argument represented at least those floating-point
  exceptions represented by the argument excepts. This function does not raise floating-
  point exceptions, but only sets the state of the flags.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fesetexceptflag function returns zero if the excepts argument is zero or if
  all the specified flags were successfully set to the appropriate state. Otherwise, it returns
  a nonzero value.
 
 <h5><a name="7.6.2.5" href="#7.6.2.5">7.6.2.5 The fetestexcept function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.6">&lt;fenv.h&gt;</a>
          int fetestexcept(int excepts);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fetestexcept function determines which of a specified subset of the floating-
  point exception flags are currently set. The excepts argument specifies the floating-
  point status flags to be queried.<sup><a href="#note188"><b>188)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fetestexcept function returns the value of the bitwise OR of the floating-point
  exception macros corresponding to the currently set floating-point exceptions included in
@@ -10007,7 +10007,7 @@ unsigned long long int
 </pre>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note188" href="#note188">188)</a> This mechanism allows testing several floating-point exceptions with just one function call.
 </small>
 
@@ -10017,34 +10017,34 @@ unsigned long long int
  modes.
 
 <h5><a name="7.6.3.1" href="#7.6.3.1">7.6.3.1 The fegetround function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.6">&lt;fenv.h&gt;</a>
         int fegetround(void);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fegetround function gets the current rounding direction.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fegetround function returns the value of the rounding direction macro
  representing the current rounding direction or a negative value if there is no such
  rounding direction macro or the current rounding direction is not determinable.
 
 <h5><a name="7.6.3.2" href="#7.6.3.2">7.6.3.2 The fesetround function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.6">&lt;fenv.h&gt;</a>
         int fesetround(int round);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fesetround function establishes the rounding direction represented by its
  argument round. If the argument is not equal to the value of a rounding direction macro,
  the rounding direction is not changed.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fesetround function returns zero if and only if the requested rounding direction
  was established.
@@ -10076,41 +10076,41 @@ unsigned long long int
  control modes -- as one entity.
 
 <h5><a name="7.6.4.1" href="#7.6.4.1">7.6.4.1 The fegetenv function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.6">&lt;fenv.h&gt;</a>
         int fegetenv(fenv_t *envp);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fegetenv function attempts to store the current floating-point environment in the
  object pointed to by envp.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fegetenv function returns zero if the environment was successfully stored.
  Otherwise, it returns a nonzero value.
 
 <h5><a name="7.6.4.2" href="#7.6.4.2">7.6.4.2 The feholdexcept function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.6">&lt;fenv.h&gt;</a>
         int feholdexcept(fenv_t *envp);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The feholdexcept function saves the current floating-point environment in the object
  pointed to by envp, clears the floating-point status flags, and then installs a non-stop
  (continue on floating-point exceptions) mode, if available, for all floating-point
  exceptions.<sup><a href="#note189"><b>189)</b></a></sup>
 <!--page 207 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The feholdexcept function returns zero if and only if non-stop floating-point
  exception handling was successfully installed.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note189" href="#note189">189)</a> IEC 60559 systems have a default non-stop mode, and typically at least one other mode for trap
  handling or aborting; if the system provides only the non-stop mode then installing it is trivial. For
  such systems, the feholdexcept function can be used in conjunction with the feupdateenv
@@ -10118,39 +10118,39 @@ unsigned long long int
 </small>
 
 <h5><a name="7.6.4.3" href="#7.6.4.3">7.6.4.3 The fesetenv function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.6">&lt;fenv.h&gt;</a>
          int fesetenv(const fenv_t *envp);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fesetenv function attempts to establish the floating-point environment represented
  by the object pointed to by envp. The argument envp shall point to an object set by a
  call to fegetenv or feholdexcept, or equal a floating-point environment macro.
  Note that fesetenv merely installs the state of the floating-point status flags
  represented through its argument, and does not raise these floating-point exceptions.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fesetenv function returns zero if the environment was successfully established.
  Otherwise, it returns a nonzero value.
 
 <h5><a name="7.6.4.4" href="#7.6.4.4">7.6.4.4 The feupdateenv function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.6">&lt;fenv.h&gt;</a>
          int feupdateenv(const fenv_t *envp);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The feupdateenv function attempts to save the currently raised floating-point
  exceptions in its automatic storage, install the floating-point environment represented by
  the object pointed to by envp, and then raise the saved floating-point exceptions. The
  argument envp shall point to an object set by a call to feholdexcept or fegetenv,
  or equal a floating-point environment macro.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The feupdateenv function returns zero if all the actions were successfully carried out.
  Otherwise, it returns a nonzero value.
@@ -10206,7 +10206,7 @@ unsigned long long int
 <p><b> Forward references</b>: integer types <a href="#7.18">&lt;stdint.h&gt;</a> (<a href="#7.18">7.18</a>), formatted input/output
  functions (<a href="#7.19.6">7.19.6</a>), formatted wide character input/output functions (<a href="#7.24.2">7.24.2</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note190" href="#note190">190)</a> See ''future library directions'' (<a href="#7.26.4">7.26.4</a>).
 </small>
 
@@ -10273,7 +10273,7 @@ unsigned long long int
 </pre>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note191" href="#note191">191)</a> C++ implementations should define these macros only when __STDC_FORMAT_MACROS is defined
  before <a href="#7.8">&lt;inttypes.h&gt;</a> is included.
 </small>
@@ -10285,13 +10285,13 @@ unsigned long long int
 <h4><a name="7.8.2" href="#7.8.2">7.8.2 Functions for greatest-width integer types</a></h4>
 
 <h5><a name="7.8.2.1" href="#7.8.2.1">7.8.2.1 The imaxabs function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.8">&lt;inttypes.h&gt;</a>
          intmax_t imaxabs(intmax_t j);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The imaxabs function computes the absolute value of an integer j. If the result cannot
  be represented, the behavior is undefined.<sup><a href="#note193"><b>193)</b></a></sup>
@@ -10299,26 +10299,26 @@ unsigned long long int
  
  
 <!--page 212 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The imaxabs function returns the absolute value.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note193" href="#note193">193)</a> The absolute value of the most negative number cannot be represented in two's complement.
 </small>
 
 <h5><a name="7.8.2.2" href="#7.8.2.2">7.8.2.2 The imaxdiv function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
             #include <a href="#7.8">&lt;inttypes.h&gt;</a>
             imaxdiv_t imaxdiv(intmax_t numer, intmax_t denom);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The imaxdiv function computes numer / denom and numer % denom in a single
  operation.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The imaxdiv function returns a structure of type imaxdiv_t comprising both the
  quotient and the remainder. The structure shall contain (in either order) the members
@@ -10326,7 +10326,7 @@ unsigned long long int
  either part of the result cannot be represented, the behavior is undefined.
 
 <h5><a name="7.8.2.3" href="#7.8.2.3">7.8.2.3 The strtoimax and strtoumax functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.8">&lt;inttypes.h&gt;</a>
@@ -10335,12 +10335,12 @@ unsigned long long int
         uintmax_t strtoumax(const char * restrict nptr,
              char ** restrict endptr, int base);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strtoimax and strtoumax functions are equivalent to the strtol, strtoll,
  strtoul, and strtoull functions, except that the initial portion of the string is
  converted to intmax_t and uintmax_t representation, respectively.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strtoimax and strtoumax functions return the converted value, if any. If no
  conversion could be performed, zero is returned. If the correct value is outside the range
@@ -10352,7 +10352,7 @@ unsigned long long int
 <!--page 213 -->
 
 <h5><a name="7.8.2.4" href="#7.8.2.4">7.8.2.4 The wcstoimax and wcstoumax functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.17">&lt;stddef.h&gt;</a>           // for wchar_t
@@ -10362,12 +10362,12 @@ unsigned long long int
         uintmax_t wcstoumax(const wchar_t * restrict nptr,
              wchar_t ** restrict endptr, int base);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcstoimax and wcstoumax functions are equivalent to the wcstol, wcstoll,
  wcstoul, and wcstoull functions except that the initial portion of the wide string is
  converted to intmax_t and uintmax_t representation, respectively.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcstoimax function returns the converted value, if any. If no conversion could be
  performed, zero is returned. If the correct value is outside the range of representable
@@ -10460,7 +10460,7 @@ unsigned long long int
  with the characters LC_ and an uppercase letter,<sup><a href="#note195"><b>195)</b></a></sup> may also be specified by the
  implementation.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note194" href="#note194">194)</a> ISO/IEC 9945-2 specifies locale and charmap formats that may be used to specify locales for C.
 </small>
 <p><small><a name="note195" href="#note195">195)</a> See ''future library directions'' (<a href="#7.26.5">7.26.5</a>).
@@ -10469,13 +10469,13 @@ unsigned long long int
 <h4><a name="7.11.1" href="#7.11.1">7.11.1 Locale control</a></h4>
 
 <h5><a name="7.11.1.1" href="#7.11.1.1">7.11.1.1 The setlocale function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.11">&lt;locale.h&gt;</a>
           char *setlocale(int category, const char *locale);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The setlocale function selects the appropriate portion of the program's locale as
  specified by the category and locale arguments. The setlocale function may be
@@ -10503,7 +10503,7 @@ unsigned long long int
  is executed.
 <p><!--para 5 -->
  The implementation shall behave as if no library function calls the setlocale function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  If a pointer to a string is given for locale and the selection can be honored, the
  setlocale function returns a pointer to the string associated with the specified
@@ -10523,7 +10523,7 @@ unsigned long long int
  (<a href="#7.20.8">7.20.8</a>), numeric conversion functions (<a href="#7.20.1">7.20.1</a>), the strcoll function (<a href="#7.21.4.3">7.21.4.3</a>), the
  strftime function (<a href="#7.23.3.5">7.23.3.5</a>), the strxfrm function (<a href="#7.21.4.5">7.21.4.5</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note196" href="#note196">196)</a> The only functions in <a href="#7.4">7.4</a> whose behavior is not affected by the current locale are isdigit and
  isxdigit.
 </small>
@@ -10534,13 +10534,13 @@ unsigned long long int
 <h4><a name="7.11.2" href="#7.11.2">7.11.2 Numeric formatting convention inquiry</a></h4>
 
 <h5><a name="7.11.2.1" href="#7.11.2.1">7.11.2.1 The localeconv function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.11">&lt;locale.h&gt;</a>
          struct lconv *localeconv(void);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The localeconv function sets the components of an object with type struct lconv
  with values appropriate for the formatting of numeric quantities (monetary and otherwise)
@@ -10696,7 +10696,7 @@ unsigned long long int
 <p><!--para 7 -->
  The implementation shall behave as if no library function calls the localeconv
  function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 8 -->
  The localeconv function returns a pointer to the filled-in object. The structure
  pointed to by the return value shall not be modified by the program, but may be
@@ -10876,7 +10876,7 @@ unsigned long long int
  shall define the macros FE_DIVBYZERO, FE_INVALID, and FE_OVERFLOW in
  <a href="#7.6">&lt;fenv.h&gt;</a>.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note198" href="#note198">198)</a> Particularly on systems with wide expression evaluation, a <a href="#7.12">&lt;math.h&gt;</a> function might pass arguments
  and return values in wider format than the synopsis prototype indicates.
 </small>
@@ -10938,7 +10938,7 @@ unsigned long long int
  math_errhandling &amp; MATH_ERREXCEPT is nonzero, whether the ''underflow''
  floating-point exception is raised is implementation-defined.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note203" href="#note203">203)</a> In an implementation that supports infinities, this allows an infinity as an argument to be a domain
  error if the mathematical domain of the function does not include the infinity.
 </small>
@@ -10947,13 +10947,13 @@ unsigned long long int
 </small>
 
 <h4><a name="7.12.2" href="#7.12.2">7.12.2 The FP_CONTRACT pragma</a></h4>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
          #pragma STDC FP_CONTRACT on-off-switch
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The FP_CONTRACT pragma can be used to allow (if the state is ''on'') or disallow (if the
  state is ''off'') the implementation to contract expressions (<a href="#6.5">6.5</a>). Each pragma can occur
@@ -10979,19 +10979,19 @@ unsigned long long int
  expression of real floating type.
 
 <h5><a name="7.12.3.1" href="#7.12.3.1">7.12.3.1 The fpclassify macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.12">&lt;math.h&gt;</a>
           int fpclassify(real-floating x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fpclassify macro classifies its argument value as NaN, infinite, normal,
  subnormal, zero, or into another implementation-defined category. First, an argument
  represented in a format wider than its semantic type is converted to its semantic type.
  Then classification is based on the type of the argument.<sup><a href="#note205"><b>205)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fpclassify macro returns the value of the number classification macro
  appropriate to the value of its argument.
@@ -11005,20 +11005,20 @@ unsigned long long int
 </pre>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note205" href="#note205">205)</a> Since an expression can be evaluated with more range and precision than its type has, it is important to
  know the type that classification is based on. For example, a normal long double value might
  become subnormal when converted to double, and zero when converted to float.
 </small>
 
 <h5><a name="7.12.3.2" href="#7.12.3.2">7.12.3.2 The isfinite macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.12">&lt;math.h&gt;</a>
           int isfinite(real-floating x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isfinite macro determines whether its argument has a finite value (zero,
  subnormal, or normal, and not infinite or NaN). First, an argument represented in a
@@ -11029,51 +11029,51 @@ unsigned long long int
  
  
 <!--page 229 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The isfinite macro returns a nonzero value if and only if its argument has a finite
  value.
 
 <h5><a name="7.12.3.3" href="#7.12.3.3">7.12.3.3 The isinf macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
          int isinf(real-floating x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isinf macro determines whether its argument value is an infinity (positive or
  negative). First, an argument represented in a format wider than its semantic type is
  converted to its semantic type. Then determination is based on the type of the argument.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The isinf macro returns a nonzero value if and only if its argument has an infinite
  value.
 
 <h5><a name="7.12.3.4" href="#7.12.3.4">7.12.3.4 The isnan macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
          int isnan(real-floating x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isnan macro determines whether its argument value is a NaN. First, an argument
  represented in a format wider than its semantic type is converted to its semantic type.
  Then determination is based on the type of the argument.<sup><a href="#note206"><b>206)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The isnan macro returns a nonzero value if and only if its argument has a NaN value.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note206" href="#note206">206)</a> For the isnan macro, the type for determination does not matter unless the implementation supports
  NaNs in the evaluation type but not in the semantic type.
 </small>
 
 <h5><a name="7.12.3.5" href="#7.12.3.5">7.12.3.5 The isnormal macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11084,33 +11084,33 @@ unsigned long long int
  
  
 <!--page 230 -->
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isnormal macro determines whether its argument value is normal (neither zero,
  subnormal, infinite, nor NaN). First, an argument represented in a format wider than its
  semantic type is converted to its semantic type. Then determination is based on the type
  of the argument.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The isnormal macro returns a nonzero value if and only if its argument has a normal
  value.
 
 <h5><a name="7.12.3.6" href="#7.12.3.6">7.12.3.6 The signbit macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
          int signbit(real-floating x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The signbit macro determines whether the sign of its argument value is negative.<sup><a href="#note207"><b>207)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The signbit macro returns a nonzero value if and only if the sign of its argument value
  is negative.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note207" href="#note207">207)</a> The signbit macro reports the sign of all values, including infinities, zeros, and NaNs. If zero is
  unsigned, it is treated as positive.
 </small>
@@ -11118,7 +11118,7 @@ unsigned long long int
 <h4><a name="7.12.4" href="#7.12.4">7.12.4 Trigonometric functions</a></h4>
 
 <h5><a name="7.12.4.1" href="#7.12.4.1">7.12.4.1 The acos functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11126,11 +11126,11 @@ unsigned long long int
          float acosf(float x);
          long double acosl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The acos functions compute the principal value of the arc cosine of x. A domain error
  occurs for arguments not in the interval [-1, +1].
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The acos functions return arccos x in the interval [0, pi ] radians.
  
@@ -11140,7 +11140,7 @@ unsigned long long int
 <!--page 231 -->
 
 <h5><a name="7.12.4.2" href="#7.12.4.2">7.12.4.2 The asin functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11148,16 +11148,16 @@ unsigned long long int
         float asinf(float x);
         long double asinl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The asin functions compute the principal value of the arc sine of x. A domain error
  occurs for arguments not in the interval [-1, +1].
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The asin functions return arcsin x in the interval [-pi /2, +pi /2] radians.
 
 <h5><a name="7.12.4.3" href="#7.12.4.3">7.12.4.3 The atan functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11165,15 +11165,15 @@ unsigned long long int
         float atanf(float x);
         long double atanl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The atan functions compute the principal value of the arc tangent of x.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The atan functions return arctan x in the interval [-pi /2, +pi /2] radians.
 
 <h5><a name="7.12.4.4" href="#7.12.4.4">7.12.4.4 The atan2 functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11181,18 +11181,18 @@ unsigned long long int
         float atan2f(float y, float x);
         long double atan2l(long double y, long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The atan2 functions compute the value of the arc tangent of y/x, using the signs of both
  arguments to determine the quadrant of the return value. A domain error may occur if
  both arguments are zero.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The atan2 functions return arctan y/x in the interval [-pi , +pi ] radians.
 <!--page 232 -->
 
 <h5><a name="7.12.4.5" href="#7.12.4.5">7.12.4.5 The cos functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11200,15 +11200,15 @@ unsigned long long int
         float cosf(float x);
         long double cosl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cos functions compute the cosine of x (measured in radians).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cos functions return cos x.
 
 <h5><a name="7.12.4.6" href="#7.12.4.6">7.12.4.6 The sin functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11216,15 +11216,15 @@ unsigned long long int
         float sinf(float x);
         long double sinl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The sin functions compute the sine of x (measured in radians).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The sin functions return sin x.
 
 <h5><a name="7.12.4.7" href="#7.12.4.7">7.12.4.7 The tan functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11232,10 +11232,10 @@ unsigned long long int
         float tanf(float x);
         long double tanl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The tan functions return the tangent of x (measured in radians).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The tan functions return tan x.
 <!--page 233 -->
@@ -11243,7 +11243,7 @@ unsigned long long int
 <h4><a name="7.12.5" href="#7.12.5">7.12.5 Hyperbolic functions</a></h4>
 
 <h5><a name="7.12.5.1" href="#7.12.5.1">7.12.5.1 The acosh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11251,16 +11251,16 @@ unsigned long long int
         float acoshf(float x);
         long double acoshl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The acosh functions compute the (nonnegative) arc hyperbolic cosine of x. A domain
  error occurs for arguments less than 1.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The acosh functions return arcosh x in the interval [0, +(inf)].
 
 <h5><a name="7.12.5.2" href="#7.12.5.2">7.12.5.2 The asinh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11268,15 +11268,15 @@ unsigned long long int
         float asinhf(float x);
         long double asinhl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The asinh functions compute the arc hyperbolic sine of x.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The asinh functions return arsinh x.
 
 <h5><a name="7.12.5.3" href="#7.12.5.3">7.12.5.3 The atanh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11284,18 +11284,18 @@ unsigned long long int
         float atanhf(float x);
         long double atanhl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The atanh functions compute the arc hyperbolic tangent of x. A domain error occurs
  for arguments not in the interval [-1, +1]. A range error may occur if the argument
  equals -1 or +1.
 <!--page 234 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The atanh functions return artanh x.
 
 <h5><a name="7.12.5.4" href="#7.12.5.4">7.12.5.4 The cosh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11303,16 +11303,16 @@ unsigned long long int
         float coshf(float x);
         long double coshl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cosh functions compute the hyperbolic cosine of x. A range error occurs if the
  magnitude of x is too large.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cosh functions return cosh x.
 
 <h5><a name="7.12.5.5" href="#7.12.5.5">7.12.5.5 The sinh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11320,16 +11320,16 @@ unsigned long long int
         float sinhf(float x);
         long double sinhl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The sinh functions compute the hyperbolic sine of x. A range error occurs if the
  magnitude of x is too large.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The sinh functions return sinh x.
 
 <h5><a name="7.12.5.6" href="#7.12.5.6">7.12.5.6 The tanh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11337,18 +11337,18 @@ unsigned long long int
         float tanhf(float x);
         long double tanhl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The tanh functions compute the hyperbolic tangent of x.
 <!--page 235 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The tanh functions return tanh x.
 
 <h4><a name="7.12.6" href="#7.12.6">7.12.6 Exponential and logarithmic functions</a></h4>
 
 <h5><a name="7.12.6.1" href="#7.12.6.1">7.12.6.1 The exp functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11356,16 +11356,16 @@ unsigned long long int
         float expf(float x);
         long double expl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The exp functions compute the base-e exponential of x. A range error occurs if the
  magnitude of x is too large.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The exp functions return e<sup>x</sup>.
 
 <h5><a name="7.12.6.2" href="#7.12.6.2">7.12.6.2 The exp2 functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11373,16 +11373,16 @@ unsigned long long int
         float exp2f(float x);
         long double exp2l(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The exp2 functions compute the base-2 exponential of x. A range error occurs if the
  magnitude of x is too large.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The exp2 functions return 2<sup>x</sup>.
 
 <h5><a name="7.12.6.3" href="#7.12.6.3">7.12.6.3 The expm1 functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <!--page 236 -->
 <pre>
@@ -11391,20 +11391,20 @@ unsigned long long int
         float expm1f(float x);
         long double expm1l(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The expm1 functions compute the base-e exponential of the argument, minus 1. A range
  error occurs if x is too large.<sup><a href="#note208"><b>208)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The expm1 functions return e<sup>x</sup> - 1.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note208" href="#note208">208)</a> For small magnitude x, expm1(x) is expected to be more accurate than exp(x) - 1.
 </small>
 
 <h5><a name="7.12.6.4" href="#7.12.6.4">7.12.6.4 The frexp functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11412,18 +11412,18 @@ unsigned long long int
          float frexpf(float value, int *exp);
          long double frexpl(long double value, int *exp);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The frexp functions break a floating-point number into a normalized fraction and an
  integral power of 2. They store the integer in the int object pointed to by exp.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If value is not a floating-point number, the results are unspecified. Otherwise, the
  frexp functions return the value x, such that x has a magnitude in the interval [1/2, 1) or
  zero, and value equals x 2<sup>*exp</sup> . If value is zero, both parts of the result are zero.
 
 <h5><a name="7.12.6.5" href="#7.12.6.5">7.12.6.5 The ilogb functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11431,7 +11431,7 @@ unsigned long long int
          int ilogbf(float x);
          int ilogbl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ilogb functions extract the exponent of x as a signed int value. If x is zero they
  compute the value FP_ILOGB0; if x is infinite they compute the value INT_MAX; if x is
@@ -11444,13 +11444,13 @@ unsigned long long int
  
  
 <!--page 237 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The ilogb functions return the exponent of x as a signed int value.
 <p><b> Forward references</b>: the logb functions (<a href="#7.12.6.11">7.12.6.11</a>).
 
 <h5><a name="7.12.6.6" href="#7.12.6.6">7.12.6.6 The ldexp functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11458,16 +11458,16 @@ unsigned long long int
         float ldexpf(float x, int exp);
         long double ldexpl(long double x, int exp);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ldexp functions multiply a floating-point number by an integral power of 2. A
  range error may occur.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The ldexp functions return x 2<sup>exp</sup> .
 
 <h5><a name="7.12.6.7" href="#7.12.6.7">7.12.6.7 The log functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11475,16 +11475,16 @@ unsigned long long int
         float logf(float x);
         long double logl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The log functions compute the base-e (natural) logarithm of x. A domain error occurs if
  the argument is negative. A range error may occur if the argument is zero.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The log functions return loge x.
 
 <h5><a name="7.12.6.8" href="#7.12.6.8">7.12.6.8 The log10 functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <!--page 238 -->
 <pre>
@@ -11493,16 +11493,16 @@ unsigned long long int
         float log10f(float x);
         long double log10l(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The log10 functions compute the base-10 (common) logarithm of x. A domain error
  occurs if the argument is negative. A range error may occur if the argument is zero.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The log10 functions return log10 x.
 
 <h5><a name="7.12.6.9" href="#7.12.6.9">7.12.6.9 The log1p functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11510,21 +11510,21 @@ unsigned long long int
          float log1pf(float x);
          long double log1pl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The log1p functions compute the base-e (natural) logarithm of 1 plus the argument.<sup><a href="#note209"><b>209)</b></a></sup>
  A domain error occurs if the argument is less than -1. A range error may occur if the
  argument equals -1.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The log1p functions return loge (1 + x).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note209" href="#note209">209)</a> For small magnitude x, log1p(x) is expected to be more accurate than log(1 + x).
 </small>
 
 <h5><a name="7.12.6.10" href="#7.12.6.10">7.12.6.10 The log2 functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11532,11 +11532,11 @@ unsigned long long int
          float log2f(float x);
          long double log2l(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The log2 functions compute the base-2 logarithm of x. A domain error occurs if the
  argument is less than zero. A range error may occur if the argument is zero.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The log2 functions return log2 x.
  
@@ -11546,7 +11546,7 @@ unsigned long long int
 <!--page 239 -->
 
 <h5><a name="7.12.6.11" href="#7.12.6.11">7.12.6.11 The logb functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11554,7 +11554,7 @@ unsigned long long int
         float logbf(float x);
         long double logbl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The logb functions extract the exponent of x, as a signed integer value in floating-point
  format. If x is subnormal it is treated as though it were normalized; thus, for positive
@@ -11563,12 +11563,12 @@ unsigned long long int
        1 &lt;= x FLT_RADIX<sup>-logb(x)</sup> &lt; FLT_RADIX
 </pre>
  A domain error or range error may occur if the argument is zero.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The logb functions return the signed exponent of x.
 
 <h5><a name="7.12.6.12" href="#7.12.6.12">7.12.6.12 The modf functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11576,18 +11576,18 @@ unsigned long long int
         float modff(float value, float *iptr);
         long double modfl(long double value, long double *iptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The modf functions break the argument value into integral and fractional parts, each of
  which has the same type and sign as the argument. They store the integral part (in
  floating-point format) in the object pointed to by iptr.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The modf functions return the signed fractional part of value.
 <!--page 240 -->
 
 <h5><a name="7.12.6.13" href="#7.12.6.13">7.12.6.13 The scalbn and scalbln functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11598,18 +11598,18 @@ unsigned long long int
         float scalblnf(float x, long int n);
         long double scalblnl(long double x, long int n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The scalbn and scalbln functions compute x FLT_RADIX<sup>n</sup> efficiently, not
  normally by computing FLT_RADIX<sup>n</sup> explicitly. A range error may occur.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The scalbn and scalbln functions return x FLT_RADIX<sup>n</sup> .
 
 <h4><a name="7.12.7" href="#7.12.7">7.12.7 Power and absolute-value functions</a></h4>
 
 <h5><a name="7.12.7.1" href="#7.12.7.1">7.12.7.1 The cbrt functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11617,15 +11617,15 @@ unsigned long long int
         float cbrtf(float x);
         long double cbrtl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cbrt functions compute the real cube root of x.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cbrt functions return x<sup>1/3</sup>.
 
 <h5><a name="7.12.7.2" href="#7.12.7.2">7.12.7.2 The fabs functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11633,16 +11633,16 @@ unsigned long long int
         float fabsf(float x);
         long double fabsl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fabs functions compute the absolute value of a floating-point number x.
 <!--page 241 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fabs functions return | x |.
 
 <h5><a name="7.12.7.3" href="#7.12.7.3">7.12.7.3 The hypot functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11650,17 +11650,17 @@ unsigned long long int
         float hypotf(float x, float y);
         long double hypotl(long double x, long double y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The hypot functions compute the square root of the sum of the squares of x and y,
  without undue overflow or underflow. A range error may occur.
 <p><!--para 3 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The hypot functions return (sqrt)(x<sup>2</sup> + y<sup>2</sup>).
 
 <h5><a name="7.12.7.4" href="#7.12.7.4">7.12.7.4 The pow functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11668,18 +11668,18 @@ unsigned long long int
         float powf(float x, float y);
         long double powl(long double x, long double y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The pow functions compute x raised to the power y. A domain error occurs if x is finite
  and negative and y is finite and not an integer value. A range error may occur. A domain
  error may occur if x is zero and y is zero. A domain error or range error may occur if x
  is zero and y is less than zero.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The pow functions return x<sup>y</sup>.
 
 <h5><a name="7.12.7.5" href="#7.12.7.5">7.12.7.5 The sqrt functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <!--page 242 -->
 <pre>
@@ -11688,18 +11688,18 @@ unsigned long long int
         float sqrtf(float x);
         long double sqrtl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The sqrt functions compute the nonnegative square root of x. A domain error occurs if
  the argument is less than zero.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The sqrt functions return (sqrt)(x).
 
 <h4><a name="7.12.8" href="#7.12.8">7.12.8 Error and gamma functions</a></h4>
 
 <h5><a name="7.12.8.1" href="#7.12.8.1">7.12.8.1 The erf functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11707,10 +11707,10 @@ unsigned long long int
         float erff(float x);
         long double erfl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The erf functions compute the error function of x.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The erf functions return
 <pre>
@@ -11720,7 +11720,7 @@ unsigned long long int
 </pre>
 
 <h5><a name="7.12.8.2" href="#7.12.8.2">7.12.8.2 The erfc functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11728,11 +11728,11 @@ unsigned long long int
         float erfcf(float x);
         long double erfcl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The erfc functions compute the complementary error function of x. A range error
  occurs if x is too large.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The erfc functions return
 <pre>
@@ -11743,7 +11743,7 @@ unsigned long long int
  
 <!--page 243 -->
 <h5><a name="7.12.8.3" href="#7.12.8.3">7.12.8.3 The lgamma functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11751,17 +11751,17 @@ unsigned long long int
         float lgammaf(float x);
         long double lgammal(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The lgamma functions compute the natural logarithm of the absolute value of gamma of
  x. A range error occurs if x is too large. A range error may occur if x is a negative
  integer or zero.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The lgamma functions return loge | (Gamma)(x) |.
 
 <h5><a name="7.12.8.4" href="#7.12.8.4">7.12.8.4 The tgamma functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11769,19 +11769,19 @@ unsigned long long int
         float tgammaf(float x);
         long double tgammal(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The tgamma functions compute the gamma function of x. A domain error or range error
  may occur if x is a negative integer or zero. A range error may occur if the magnitude of
  x is too large or too small.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The tgamma functions return (Gamma)(x).
 
 <h4><a name="7.12.9" href="#7.12.9">7.12.9 Nearest integer functions</a></h4>
 
 <h5><a name="7.12.9.1" href="#7.12.9.1">7.12.9.1 The ceil functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11789,16 +11789,16 @@ unsigned long long int
         float ceilf(float x);
         long double ceill(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ceil functions compute the smallest integer value not less than x.
 <!--page 244 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The ceil functions return [^x^], expressed as a floating-point number.
 
 <h5><a name="7.12.9.2" href="#7.12.9.2">7.12.9.2 The floor functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11806,15 +11806,15 @@ unsigned long long int
         float floorf(float x);
         long double floorl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The floor functions compute the largest integer value not greater than x.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The floor functions return [_x_], expressed as a floating-point number.
 
 <h5><a name="7.12.9.3" href="#7.12.9.3">7.12.9.3 The nearbyint functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11822,17 +11822,17 @@ unsigned long long int
         float nearbyintf(float x);
         long double nearbyintl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The nearbyint functions round their argument to an integer value in floating-point
  format, using the current rounding direction and without raising the ''inexact'' floating-
  point exception.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The nearbyint functions return the rounded integer value.
 
 <h5><a name="7.12.9.4" href="#7.12.9.4">7.12.9.4 The rint functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11840,18 +11840,18 @@ unsigned long long int
         float rintf(float x);
         long double rintl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The rint functions differ from the nearbyint functions (<a href="#7.12.9.3">7.12.9.3</a>) only in that the
  rint functions may raise the ''inexact'' floating-point exception if the result differs in
  value from the argument.
 <!--page 245 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The rint functions return the rounded integer value.
 
 <h5><a name="7.12.9.5" href="#7.12.9.5">7.12.9.5 The lrint and llrint functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11862,18 +11862,18 @@ unsigned long long int
         long long int llrintf(float x);
         long long int llrintl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The lrint and llrint functions round their argument to the nearest integer value,
  rounding according to the current rounding direction. If the rounded value is outside the
  range of the return type, the numeric result is unspecified and a domain error or range
  error may occur.                                                                          *
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The lrint and llrint functions return the rounded integer value.
 
 <h5><a name="7.12.9.6" href="#7.12.9.6">7.12.9.6 The round functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11881,18 +11881,18 @@ unsigned long long int
         float roundf(float x);
         long double roundl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The round functions round their argument to the nearest integer value in floating-point
  format, rounding halfway cases away from zero, regardless of the current rounding
  direction.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The round functions return the rounded integer value.
 <!--page 246 -->
 
 <h5><a name="7.12.9.7" href="#7.12.9.7">7.12.9.7 The lround and llround functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11903,18 +11903,18 @@ unsigned long long int
         long long int llroundf(float x);
         long long int llroundl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The lround and llround functions round their argument to the nearest integer value,
  rounding halfway cases away from zero, regardless of the current rounding direction. If
  the rounded value is outside the range of the return type, the numeric result is unspecified
  and a domain error or range error may occur.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The lround and llround functions return the rounded integer value.
 
 <h5><a name="7.12.9.8" href="#7.12.9.8">7.12.9.8 The trunc functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11922,11 +11922,11 @@ unsigned long long int
         float truncf(float x);
         long double truncl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The trunc functions round their argument to the integer value, in floating format,
  nearest to but no larger in magnitude than the argument.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The trunc functions return the truncated integer value.
 <!--page 247 -->
@@ -11934,7 +11934,7 @@ unsigned long long int
 <h4><a name="7.12.10" href="#7.12.10">7.12.10 Remainder functions</a></h4>
 
 <h5><a name="7.12.10.1" href="#7.12.10.1">7.12.10.1 The fmod functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11942,10 +11942,10 @@ unsigned long long int
           float fmodf(float x, float y);
           long double fmodl(long double x, long double y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fmod functions compute the floating-point remainder of x/y.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fmod functions return the value x - ny, for some integer n such that, if y is nonzero,
  the result has the same sign as x and magnitude less than the magnitude of y. If y is zero,
@@ -11953,7 +11953,7 @@ unsigned long long int
  defined.
 
 <h5><a name="7.12.10.2" href="#7.12.10.2">7.12.10.2 The remainder functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11961,10 +11961,10 @@ unsigned long long int
           float remainderf(float x, float y);
           long double remainderl(long double x, long double y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The remainder functions compute the remainder x REM y required by IEC 60559.<sup><a href="#note210"><b>210)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The remainder functions return x REM y. If y is zero, whether a domain error occurs
  or the functions return zero is implementation defined.
@@ -11974,7 +11974,7 @@ unsigned long long int
  
 <!--page 248 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note210" href="#note210">210)</a> ''When y != 0, the remainder r = x REM y is defined regardless of the rounding mode by the
  mathematical relation r = x - ny, where n is the integer nearest the exact value of x/y; whenever
  | n - x/y | = 1/2, then n is even. Thus, the remainder is always exact. If r = 0, its sign shall be that of
@@ -11982,7 +11982,7 @@ unsigned long long int
 </small>
 
 <h5><a name="7.12.10.3" href="#7.12.10.3">7.12.10.3 The remquo functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -11991,13 +11991,13 @@ unsigned long long int
         long double remquol(long double x, long double y,
              int *quo);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The remquo functions compute the same remainder as the remainder functions. In
  the object pointed to by quo they store a value whose sign is the sign of x/y and whose
  magnitude is congruent modulo 2<sup>n</sup> to the magnitude of the integral quotient of x/y, where
  n is an implementation-defined integer greater than or equal to 3.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The remquo functions return x REM y. If y is zero, the value stored in the object
  pointed to by quo is unspecified and whether a domain error occurs or the functions
@@ -12006,7 +12006,7 @@ unsigned long long int
 <h4><a name="7.12.11" href="#7.12.11">7.12.11 Manipulation functions</a></h4>
 
 <h5><a name="7.12.11.1" href="#7.12.11.1">7.12.11.1 The copysign functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12014,19 +12014,19 @@ unsigned long long int
         float copysignf(float x, float y);
         long double copysignl(long double x, long double y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The copysign functions produce a value with the magnitude of x and the sign of y.
  They produce a NaN (with the sign of y) if x is a NaN. On implementations that
  represent a signed zero but do not treat negative zero consistently in arithmetic
  operations, the copysign functions regard the sign of zero as positive.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The copysign functions return a value with the magnitude of x and the sign of y.
 <!--page 249 -->
 
 <h5><a name="7.12.11.2" href="#7.12.11.2">7.12.11.2 The nan functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12034,7 +12034,7 @@ unsigned long long int
          float nanf(const char *tagp);
          long double nanl(const char *tagp);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The call nan("n-char-sequence") is equivalent to strtod("NAN(n-char-
  sequence)",     (char**)       NULL); the call nan("") is equivalent to
@@ -12042,14 +12042,14 @@ unsigned long long int
  sequence or an empty string, the call is equivalent to strtod("NAN", (char**)
  NULL). Calls to nanf and nanl are equivalent to the corresponding calls to strtof
  and strtold.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The nan functions return a quiet NaN, if available, with content indicated through tagp.
  If the implementation does not support quiet NaNs, the functions return zero.
 <p><b> Forward references</b>: the strtod, strtof, and strtold functions (<a href="#7.20.1.3">7.20.1.3</a>).
 
 <h5><a name="7.12.11.3" href="#7.12.11.3">7.12.11.3 The nextafter functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12057,14 +12057,14 @@ unsigned long long int
          float nextafterf(float x, float y);
          long double nextafterl(long double x, long double y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The nextafter functions determine the next representable value, in the type of the
  function, after x in the direction of y, where x and y are first converted to the type of the
  function.<sup><a href="#note211"><b>211)</b></a></sup> The nextafter functions return y if x equals y. A range error may occur
  if the magnitude of x is the largest finite value representable in the type and the result is
  infinite or not representable in the type.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The nextafter functions return the next representable value in the specified format
  after x in the direction of y.
@@ -12072,13 +12072,13 @@ unsigned long long int
  
 <!--page 250 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note211" href="#note211">211)</a> The argument values are converted to the type of the function, even by a macro implementation of the
  function.
 </small>
 
 <h5><a name="7.12.11.4" href="#7.12.11.4">7.12.11.4 The nexttoward functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12086,13 +12086,13 @@ unsigned long long int
          float nexttowardf(float x, long double y);
          long double nexttowardl(long double x, long double y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The nexttoward functions are equivalent to the nextafter functions except that the
  second parameter has type long double and the functions return y converted to the
  type of the function if x equals y.<sup><a href="#note212"><b>212)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note212" href="#note212">212)</a> The result of the nexttoward functions is determined in the type of the function, without loss of
  range or precision in a floating second argument.
 </small>
@@ -12100,7 +12100,7 @@ unsigned long long int
 <h4><a name="7.12.12" href="#7.12.12">7.12.12 Maximum, minimum, and positive difference functions</a></h4>
 
 <h5><a name="7.12.12.1" href="#7.12.12.1">7.12.12.1 The fdim functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12108,7 +12108,7 @@ unsigned long long int
          float fdimf(float x, float y);
          long double fdiml(long double x, long double y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fdim functions determine the positive difference between their arguments:
 <pre>
@@ -12117,12 +12117,12 @@ unsigned long long int
        {+0     if x &lt;= y
 </pre>
  A range error may occur.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fdim functions return the positive difference value.
 
 <h5><a name="7.12.12.2" href="#7.12.12.2">7.12.12.2 The fmax functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12134,20 +12134,20 @@ unsigned long long int
  
  
 <!--page 251 -->
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fmax functions determine the maximum numeric value of their arguments.<sup><a href="#note213"><b>213)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fmax functions return the maximum numeric value of their arguments.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note213" href="#note213">213)</a> NaN arguments are treated as missing data: if one argument is a NaN and the other numeric, then the
  fmax functions choose the numeric value. See <a href="#F.9.9.2">F.9.9.2</a>.
 </small>
 
 <h5><a name="7.12.12.3" href="#7.12.12.3">7.12.12.3 The fmin functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12155,21 +12155,21 @@ unsigned long long int
          float fminf(float x, float y);
          long double fminl(long double x, long double y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fmin functions determine the minimum numeric value of their arguments.<sup><a href="#note214"><b>214)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fmin functions return the minimum numeric value of their arguments.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note214" href="#note214">214)</a> The fmin functions are analogous to the fmax functions in their treatment of NaNs.
 </small>
 
 <h4><a name="7.12.13" href="#7.12.13">7.12.13 Floating multiply-add</a></h4>
 
 <h5><a name="7.12.13.1" href="#7.12.13.1">7.12.13.1 The fma functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12178,12 +12178,12 @@ unsigned long long int
          long double fmal(long double x, long double y,
               long double z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fma functions compute (x y) + z, rounded as one ternary operation: they compute
  the value (as if) to infinite precision and round once to the result format, according to the
  current rounding mode. A range error may occur.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fma functions return (x y) + z, rounded as one ternary operation.
  
@@ -12205,37 +12205,37 @@ unsigned long long int
  the synopses in this subclause, real-floating indicates that the argument shall be an
  expression of real floating type.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note215" href="#note215">215)</a> IEC 60559 requires that the built-in relational operators raise the ''invalid'' floating-point exception if
  the operands compare unordered, as an error indicator for programs written without consideration of
  NaNs; the result in these cases is false.
 </small>
 
 <h5><a name="7.12.14.1" href="#7.12.14.1">7.12.14.1 The isgreater macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.12">&lt;math.h&gt;</a>
           int isgreater(real-floating x, real-floating y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isgreater macro determines whether its first argument is greater than its second
  argument. The value of isgreater(x, y) is always equal to (x) &gt; (y); however,
  unlike (x) &gt; (y), isgreater(x, y) does not raise the ''invalid'' floating-point
  exception when x and y are unordered.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The isgreater macro returns the value of (x) &gt; (y).
 
 <h5><a name="7.12.14.2" href="#7.12.14.2">7.12.14.2 The isgreaterequal macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.12">&lt;math.h&gt;</a>
           int isgreaterequal(real-floating x, real-floating y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isgreaterequal macro determines whether its first argument is greater than or
  equal to its second argument. The value of isgreaterequal(x, y) is always equal
@@ -12245,52 +12245,52 @@ unsigned long long int
  
  
 <!--page 253 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The isgreaterequal macro returns the value of (x) &gt;= (y).
 
 <h5><a name="7.12.14.3" href="#7.12.14.3">7.12.14.3 The isless macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
         int isless(real-floating x, real-floating y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isless macro determines whether its first argument is less than its second
  argument. The value of isless(x, y) is always equal to (x) &lt; (y); however,
  unlike (x) &lt; (y), isless(x, y) does not raise the ''invalid'' floating-point
  exception when x and y are unordered.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The isless macro returns the value of (x) &lt; (y).
 
 <h5><a name="7.12.14.4" href="#7.12.14.4">7.12.14.4 The islessequal macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
         int islessequal(real-floating x, real-floating y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The islessequal macro determines whether its first argument is less than or equal to
  its second argument. The value of islessequal(x, y) is always equal to
  (x) &lt;= (y); however, unlike (x) &lt;= (y), islessequal(x, y) does not raise
  the ''invalid'' floating-point exception when x and y are unordered.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The islessequal macro returns the value of (x) &lt;= (y).
 
 <h5><a name="7.12.14.5" href="#7.12.14.5">7.12.14.5 The islessgreater macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
         int islessgreater(real-floating x, real-floating y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The islessgreater macro determines whether its first argument is less than or
  greater than its second argument. The islessgreater(x, y) macro is similar to
@@ -12298,21 +12298,21 @@ unsigned long long int
  the ''invalid'' floating-point exception when x and y are unordered (nor does it evaluate x
  and y twice).
 <!--page 254 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The islessgreater macro returns the value of (x) &lt; (y) || (x) &gt; (y).
 
 <h5><a name="7.12.14.6" href="#7.12.14.6">7.12.14.6 The isunordered macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
        #include <a href="#7.12">&lt;math.h&gt;</a>
        int isunordered(real-floating x, real-floating y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isunordered macro determines whether its arguments are unordered.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The isunordered macro returns 1 if its arguments are unordered and 0 otherwise.
 <!--page 255 -->
@@ -12337,7 +12337,7 @@ unsigned long long int
  linkage. If a macro definition is suppressed in order to access an actual function, or a
  program defines an external identifier with the name setjmp, the behavior is undefined.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note216" href="#note216">216)</a> These functions are useful for dealing with unusual conditions encountered in a low-level function of
  a program.
 </small>
@@ -12345,22 +12345,22 @@ unsigned long long int
 <h4><a name="7.13.1" href="#7.13.1">7.13.1 Save calling environment</a></h4>
 
 <h5><a name="7.13.1.1" href="#7.13.1.1">7.13.1.1 The setjmp macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.13">&lt;setjmp.h&gt;</a>
          int setjmp(jmp_buf env);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The setjmp macro saves its calling environment in its jmp_buf argument for later use
  by the longjmp function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If the return is from a direct invocation, the setjmp macro returns the value zero. If the
  return is from a call to the longjmp function, the setjmp macro returns a nonzero
  value.
-<h6>Environmental limits</h6>
+<p><b>Environmental limits</b>
 <p><!--para 4 -->
  An invocation of the setjmp macro shall appear only in one of the following contexts:
 <ul>
@@ -12381,13 +12381,13 @@ unsigned long long int
 <h4><a name="7.13.2" href="#7.13.2">7.13.2 Restore calling environment</a></h4>
 
 <h5><a name="7.13.2.1" href="#7.13.2.1">7.13.2.1 The longjmp function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.13">&lt;setjmp.h&gt;</a>
           void longjmp(jmp_buf env, int val);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The longjmp function restores the environment saved by the most recent invocation of
  the setjmp macro in the same invocation of the program with the corresponding
@@ -12402,7 +12402,7 @@ unsigned long long int
  invocation of the corresponding setjmp macro that do not have volatile-qualified type
  and have been changed between the setjmp invocation and longjmp call are
  indeterminate.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  After longjmp is completed, program execution continues as if the corresponding
  invocation of the setjmp macro had just returned the value specified by val. The
@@ -12441,7 +12441,7 @@ unsigned long long int
         }
 </pre>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note217" href="#note217">217)</a> For example, by executing a return statement or because another longjmp call has caused a
  transfer to a setjmp invocation in a function earlier in the set of nested calls.
 </small>
@@ -12493,7 +12493,7 @@ unsigned long long int
  
 <!--page 259 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note219" href="#note219">219)</a> See ''future library directions'' (<a href="#7.26.9">7.26.9</a>). The names of the signal numbers reflect the following terms
  (respectively): abort, floating-point exception, illegal instruction, interrupt, segmentation violation,
  and termination.
@@ -12502,13 +12502,13 @@ unsigned long long int
 <h4><a name="7.14.1" href="#7.14.1">7.14.1 Specify signal handling</a></h4>
 
 <h5><a name="7.14.1.1" href="#7.14.1.1">7.14.1.1 The signal function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.14">&lt;signal.h&gt;</a>
          void (*signal(int sig, void (*func)(int)))(int);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The signal function chooses one of three ways in which receipt of the signal number
  sig is to be subsequently handled. If the value of func is SIG_DFL, default handling
@@ -12555,7 +12555,7 @@ unsigned long long int
  is executed for all other signals defined by the implementation.
 <p><!--para 7 -->
  The implementation shall behave as if no library function calls the signal function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 8 -->
  If the request can be honored, the signal function returns the value of func for the
  most recent successful call to signal for the specified signal sig. Otherwise, a value of
@@ -12563,25 +12563,25 @@ unsigned long long int
 <p><b> Forward references</b>: the abort function (<a href="#7.20.4.1">7.20.4.1</a>), the exit function (<a href="#7.20.4.3">7.20.4.3</a>), the
  _Exit function (<a href="#7.20.4.4">7.20.4.4</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note220" href="#note220">220)</a> If any signal is generated by an asynchronous signal handler, the behavior is undefined.
 </small>
 
 <h4><a name="7.14.2" href="#7.14.2">7.14.2 Send signal</a></h4>
 
 <h5><a name="7.14.2.1" href="#7.14.2.1">7.14.2.1 The raise function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.14">&lt;signal.h&gt;</a>
         int raise(int sig);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The raise function carries out the actions described in <a href="#7.14.1.1">7.14.1.1</a> for the signal sig. If a
  signal handler is called, the raise function shall not return until after the signal handler
  does.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The raise function returns zero if successful, nonzero if unsuccessful.
 <!--page 261 -->
@@ -12609,7 +12609,7 @@ unsigned long long int
  value of ap in the calling function is indeterminate and shall be passed to the va_end
  macro prior to any further reference to ap.<sup><a href="#note221"><b>221)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note221" href="#note221">221)</a> It is permitted to create a pointer to a va_list and pass that pointer to another function, in which
  case the original function may make further use of the original list after the other function returns.
 </small>
@@ -12625,13 +12625,13 @@ unsigned long long int
  function.
 
 <h5><a name="7.15.1.1" href="#7.15.1.1">7.15.1.1 The va_arg macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.15">&lt;stdarg.h&gt;</a>
          type va_arg(va_list ap, type);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The va_arg macro expands to an expression that has the specified type and the value of
  the next argument in the call. The parameter ap shall have been initialized by the
@@ -12650,38 +12650,38 @@ unsigned long long int
  type, and the value is representable in both types;
 <li>  one type is pointer to void and the other is a pointer to a character type.
 </ul>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The first invocation of the va_arg macro after that of the va_start macro returns the
  value of the argument after that specified by parmN . Successive invocations return the
  values of the remaining arguments in succession.
 
 <h5><a name="7.15.1.2" href="#7.15.1.2">7.15.1.2 The va_copy macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.15">&lt;stdarg.h&gt;</a>
         void va_copy(va_list dest, va_list src);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The va_copy macro initializes dest as a copy of src, as if the va_start macro had
  been applied to dest followed by the same sequence of uses of the va_arg macro as
  had previously been used to reach the present state of src. Neither the va_copy nor
  va_start macro shall be invoked to reinitialize dest without an intervening
  invocation of the va_end macro for the same dest.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The va_copy macro returns no value.
 
 <h5><a name="7.15.1.3" href="#7.15.1.3">7.15.1.3 The va_end macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.15">&lt;stdarg.h&gt;</a>
         void va_end(va_list ap);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The va_end macro facilitates a normal return from the function whose variable
  argument list was referred to by the expansion of the va_start macro, or the function
@@ -12691,18 +12691,18 @@ unsigned long long int
  by the va_start or va_copy macro). If there is no corresponding invocation of the
  va_start or va_copy macro, or if the va_end macro is not invoked before the
  return, the behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The va_end macro returns no value.
 
 <h5><a name="7.15.1.4" href="#7.15.1.4">7.15.1.4 The va_start macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.15">&lt;stdarg.h&gt;</a>
          void va_start(va_list ap, parmN);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The va_start macro shall be invoked before any access to the unnamed arguments.
 <p><!--para 3 -->
@@ -12715,7 +12715,7 @@ unsigned long long int
  parmN is declared with the register storage class, with a function or array type, or
  with a type that is not compatible with the type that results after application of the default
  argument promotions, the behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The va_start macro returns no value.
 <p><!--para 6 -->
@@ -12811,7 +12811,7 @@ unsigned long long int
  
 <!--page 266 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note222" href="#note222">222)</a> See ''future library directions'' (<a href="#7.26.7">7.26.7</a>).
 </small>
 
@@ -12856,7 +12856,7 @@ unsigned long long int
 </pre>
  then the expression &amp;(t.member-designator) evaluates to an address constant. (If the
  specified member is a bit-field, the behavior is undefined.)
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 4 -->
  The types used for size_t and ptrdiff_t should not have an integer conversion rank
  greater than that of signed long int unless the implementation supports objects
@@ -12890,7 +12890,7 @@ unsigned long long int
  shall provide those types described as ''required'', but need not provide any of the others
  (described as ''optional'').
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note223" href="#note223">223)</a> See ''future library directions'' (<a href="#7.26.8">7.26.8</a>).
 </small>
 <p><small><a name="note224" href="#note224">224)</a> Some of these types may denote implementation-defined extended integer types.
@@ -12966,7 +12966,7 @@ unsigned long long int
 </pre>
  All other types of this form are optional.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note225" href="#note225">225)</a> The designated type is not guaranteed to be fastest for all purposes; if the implementation has no clear
  grounds for choosing one type over another, it will simply pick some integer type satisfying the
  signedness and width requirements.
@@ -13017,7 +13017,7 @@ unsigned long long int
  magnitude (absolute value) than the corresponding value given below, with the same sign,
  except where stated to be exactly the given value.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note226" href="#note226">226)</a> C++ implementations should define these macros only when __STDC_LIMIT_MACROS is defined
  before <a href="#7.18">&lt;stdint.h&gt;</a> is included.
 </small>
@@ -13165,7 +13165,7 @@ unsigned long long int
  otherwise, wint_t is defined as an unsigned integer type, and the value of WINT_MIN
  shall be 0 and the value of WINT_MAX shall be no less than 65535.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note227" href="#note227">227)</a> C++ implementations should define these macros only when __STDC_LIMIT_MACROS is defined
  before <a href="#7.18">&lt;stdint.h&gt;</a> is included.
 </small>
@@ -13195,7 +13195,7 @@ unsigned long long int
  
 <!--page 273 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note230" href="#note230">230)</a> C++ implementations should define these macros only when __STDC_CONSTANT_MACROS is
  defined before <a href="#7.18">&lt;stdint.h&gt;</a> is included.
 </small>
@@ -13328,7 +13328,7 @@ unsigned long long int
 <p><b> Forward references</b>: files (<a href="#7.19.3">7.19.3</a>), the fseek function (<a href="#7.19.9.2">7.19.9.2</a>), streams (<a href="#7.19.2">7.19.2</a>), the
  tmpnam function (<a href="#7.19.4.4">7.19.4.4</a>), <a href="#7.24">&lt;wchar.h&gt;</a> (<a href="#7.24">7.24</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note231" href="#note231">231)</a> If the implementation imposes no practical limit on the length of file name strings, the value of
  FILENAME_MAX should instead be the recommended size of an array intended to hold a file name
  string. Of course, file name string contents are subject to other system-specific constraints; therefore
@@ -13391,7 +13391,7 @@ unsigned long long int
  value of this mbstate_t object as part of the value of the fpos_t object. A later
  successful call to fsetpos using the same stored fpos_t value restores the value of
  the associated mbstate_t object as well as the position within the controlled stream.
-<h6>Environmental limits</h6>
+<p><b>Environmental limits</b>
 <p><!--para 7 -->
  An implementation shall support text files with lines containing at least 254 characters,
  including the terminating new-line character. The value of the macro BUFSIZ shall be at
@@ -13405,7 +13405,7 @@ unsigned long long int
  
 <!--page 278 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note232" href="#note232">232)</a> An implementation need not distinguish between text streams and binary streams. In such an
  implementation, there need be no new-line characters in a text stream nor any limit to the length of a
  line.
@@ -13507,7 +13507,7 @@ unsigned long long int
  multibyte character. The wide character input/output functions and the byte input/output
  functions store the value of the macro EILSEQ in errno if and only if an encoding error
  occurs.
-<h6>Environmental limits</h6>
+<p><b>Environmental limits</b>
 <p><!--para 15 -->
  The value of FOPEN_MAX shall be at least eight, including the three standard text
  streams.
@@ -13517,7 +13517,7 @@ unsigned long long int
  fputwc function (<a href="#7.24.3.3">7.24.3.3</a>), conversion state (<a href="#7.24.6">7.24.6</a>), the mbrtowc function
  (<a href="#7.24.6.3.2">7.24.6.3.2</a>), the wcrtomb function (<a href="#7.24.6.3.3">7.24.6.3.3</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note234" href="#note234">234)</a> Setting the file position indicator to end-of-file, as with fseek(file, 0, SEEK_END), has
  undefined behavior for a binary stream (because of possible trailing null characters) or for any stream
  with state-dependent encoding that does not assuredly end in the initial shift state.
@@ -13526,79 +13526,79 @@ unsigned long long int
 <h4><a name="7.19.4" href="#7.19.4">7.19.4 Operations on files</a></h4>
 
 <h5><a name="7.19.4.1" href="#7.19.4.1">7.19.4.1 The remove function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int remove(const char *filename);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The remove function causes the file whose name is the string pointed to by filename
  to be no longer accessible by that name. A subsequent attempt to open that file using that
  name will fail, unless it is created anew. If the file is open, the behavior of the remove
  function is implementation-defined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The remove function returns zero if the operation succeeds, nonzero if it fails.
 
 <h5><a name="7.19.4.2" href="#7.19.4.2">7.19.4.2 The rename function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int rename(const char *old, const char *new);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The rename function causes the file whose name is the string pointed to by old to be
  henceforth known by the name given by the string pointed to by new. The file named
  old is no longer accessible by that name. If a file named by the string pointed to by new
  exists prior to the call to the rename function, the behavior is implementation-defined.
 <!--page 281 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The rename function returns zero if the operation succeeds, nonzero if it fails,<sup><a href="#note235"><b>235)</b></a></sup> in
  which case if the file existed previously it is still known by its original name.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note235" href="#note235">235)</a> Among the reasons the implementation may cause the rename function to fail are that the file is open
  or that it is necessary to copy its contents to effectuate its renaming.
 </small>
 
 <h5><a name="7.19.4.3" href="#7.19.4.3">7.19.4.3 The tmpfile function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.19">&lt;stdio.h&gt;</a>
          FILE *tmpfile(void);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The tmpfile function creates a temporary binary file that is different from any other
  existing file and that will automatically be removed when it is closed or at program
  termination. If the program terminates abnormally, whether an open temporary file is
  removed is implementation-defined. The file is opened for update with "wb+" mode.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 3 -->
  It should be possible to open at least TMP_MAX temporary files during the lifetime of the
  program (this limit may be shared with tmpnam) and there should be no limit on the
  number simultaneously open other than this limit and any limit on the number of open
  files (FOPEN_MAX).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The tmpfile function returns a pointer to the stream of the file that it created. If the file
  cannot be created, the tmpfile function returns a null pointer.
 <p><b> Forward references</b>: the fopen function (<a href="#7.19.5.3">7.19.5.3</a>).
 
 <h5><a name="7.19.4.4" href="#7.19.4.4">7.19.4.4 The tmpnam function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.19">&lt;stdio.h&gt;</a>
          char *tmpnam(char *s);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The tmpnam function generates a string that is a valid file name and that is not the same
  as the name of an existing file.<sup><a href="#note236"><b>236)</b></a></sup> The function is potentially capable of generating
@@ -13611,7 +13611,7 @@ unsigned long long int
  The tmpnam function generates a different string each time it is called.
 <p><!--para 4 -->
  The implementation shall behave as if no library function calls the tmpnam function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  If no suitable string can be generated, the tmpnam function returns a null pointer.
  Otherwise, if the argument is a null pointer, the tmpnam function leaves its result in an
@@ -13619,11 +13619,11 @@ unsigned long long int
  function may modify the same object). If the argument is not a null pointer, it is assumed
  to point to an array of at least L_tmpnam chars; the tmpnam function writes its result
  in that array and returns the argument as its value.
-<h6>Environmental limits</h6>
+<p><b>Environmental limits</b>
 <p><!--para 6 -->
  The value of the macro TMP_MAX shall be at least 25.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note236" href="#note236">236)</a> Files created using strings generated by the tmpnam function are temporary only in the sense that
  their names should not collide with those generated by conventional naming rules for the
  implementation. It is still necessary to use the remove function to remove such files when their use
@@ -13633,13 +13633,13 @@ unsigned long long int
 <h4><a name="7.19.5" href="#7.19.5">7.19.5 File access functions</a></h4>
 
 <h5><a name="7.19.5.1" href="#7.19.5.1">7.19.5.1 The fclose function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int fclose(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  A successful call to the fclose function causes the stream pointed to by stream to be
  flushed and the associated file to be closed. Any unwritten buffered data for the stream
@@ -13647,20 +13647,20 @@ unsigned long long int
  are discarded. Whether or not the call succeeds, the stream is disassociated from the file
  and any buffer set by the setbuf or setvbuf function is disassociated from the stream
  (and deallocated if it was automatically allocated).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fclose function returns zero if the stream was successfully closed, or EOF if any
  errors were detected.
 
 <h5><a name="7.19.5.2" href="#7.19.5.2">7.19.5.2 The fflush function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <!--page 283 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int fflush(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If stream points to an output stream or an update stream in which the most recent
  operation was not input, the fflush function causes any unwritten data for that stream
@@ -13669,21 +13669,21 @@ unsigned long long int
 <p><!--para 3 -->
  If stream is a null pointer, the fflush function performs this flushing action on all
  streams for which the behavior is defined above.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The fflush function sets the error indicator for the stream and returns EOF if a write
  error occurs, otherwise it returns zero.
 <p><b> Forward references</b>: the fopen function (<a href="#7.19.5.3">7.19.5.3</a>).
 
 <h5><a name="7.19.5.3" href="#7.19.5.3">7.19.5.3 The fopen function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.19">&lt;stdio.h&gt;</a>
          FILE *fopen(const char * restrict filename,
               const char * restrict mode);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fopen function opens the file whose name is the string pointed to by filename,
  and associates a stream with it.
@@ -13728,20 +13728,20 @@ unsigned long long int
 <p><!--para 7 -->
  When opened, a stream is fully buffered if and only if it can be determined not to refer to
  an interactive device. The error and end-of-file indicators for the stream are cleared.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 8 -->
  The fopen function returns a pointer to the object controlling the stream. If the open
  operation fails, fopen returns a null pointer.
 <p><b> Forward references</b>: file positioning functions (<a href="#7.19.9">7.19.9</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note237" href="#note237">237)</a> If the string begins with one of the above sequences, the implementation might choose to ignore the
  remaining characters, or it might use them to select different kinds of a file (some of which might not
  conform to the properties in <a href="#7.19.2">7.19.2</a>).
 </small>
 
 <h5><a name="7.19.5.4" href="#7.19.5.4">7.19.5.4 The freopen function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
@@ -13749,7 +13749,7 @@ unsigned long long int
              const char * restrict mode,
              FILE * restrict stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The freopen function opens the file whose name is the string pointed to by filename
  and associates the stream pointed to by stream with it. The mode argument is used just
@@ -13764,37 +13764,37 @@ unsigned long long int
  The freopen function first attempts to close any file that is associated with the specified
  stream. Failure to close the file is ignored. The error and end-of-file indicators for the
  stream are cleared.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The freopen function returns a null pointer if the open operation fails. Otherwise,
  freopen returns the value of stream.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note238" href="#note238">238)</a> The primary use of the freopen function is to change the file associated with a standard text stream
  (stderr, stdin, or stdout), as those identifiers need not be modifiable lvalues to which the value
  returned by the fopen function may be assigned.
 </small>
 
 <h5><a name="7.19.5.5" href="#7.19.5.5">7.19.5.5 The setbuf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.19">&lt;stdio.h&gt;</a>
          void setbuf(FILE * restrict stream,
               char * restrict buf);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  Except that it returns no value, the setbuf function is equivalent to the setvbuf
  function invoked with the values _IOFBF for mode and BUFSIZ for size, or (if buf
  is a null pointer), with the value _IONBF for mode.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The setbuf function returns no value.
 <p><b> Forward references</b>: the setvbuf function (<a href="#7.19.5.6">7.19.5.6</a>).
 
 <h5><a name="7.19.5.6" href="#7.19.5.6">7.19.5.6 The setvbuf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.19">&lt;stdio.h&gt;</a>
@@ -13807,7 +13807,7 @@ unsigned long long int
  
  
 <!--page 286 -->
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The setvbuf function may be used only after the stream pointed to by stream has
  been associated with an open file and before any other operation (other than an
@@ -13819,12 +13819,12 @@ unsigned long long int
  specifies the size of the array; otherwise, size may determine the size of a buffer
  allocated by the setvbuf function. The contents of the array at any time are
  indeterminate.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The setvbuf function returns zero on success, or nonzero if an invalid value is given
  for mode or if the request cannot be honored.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note239" href="#note239">239)</a> The buffer has to have a lifetime at least as great as the open stream, so the stream should be closed
  before a buffer that has automatic storage duration is deallocated upon block exit.
 </small>
@@ -13834,19 +13834,19 @@ unsigned long long int
  The formatted input/output functions shall behave as if there is a sequence point after the
  actions associated with each specifier.<sup><a href="#note240"><b>240)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note240" href="#note240">240)</a> The fprintf functions perform writes to memory for the %n specifier.
 </small>
 
 <h5><a name="7.19.6.1" href="#7.19.6.1">7.19.6.1 The fprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.19">&lt;stdio.h&gt;</a>
          int fprintf(FILE * restrict stream,
               const char * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fprintf function writes output to the stream pointed to by stream, under control
  of the string pointed to by format that specifies how subsequent arguments are
@@ -14093,7 +14093,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <p><!--para 11 -->
  For a and A conversions, if FLT_RADIX is a power of 2, the value is correctly rounded
  to a hexadecimal floating number with the given precision.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 12 -->
  For a and A conversions, if FLT_RADIX is not a power of 2 and the result is not exactly
  representable in the given precision, the result should be one of the two adjacent numbers
@@ -14108,11 +14108,11 @@ If a length modifier appears with any conversion specifier other than as specifi
  adjacent decimal strings L &lt; U, both having DECIMAL_DIG significant digits; the value
  of the resultant decimal string D should satisfy L &lt;= D &lt;= U, with the extra stipulation that
  the error should have a correct sign for the current rounding direction.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 14 -->
  The fprintf function returns the number of characters transmitted, or a negative value
  if an output or encoding error occurred.
-<h6>Environmental limits</h6>
+<p><b>Environmental limits</b>
 <p><!--para 15 -->
  The number of characters that can be produced by any single conversion shall be at least
  4095.
@@ -14167,7 +14167,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  
 <p><b> Forward references</b>: conversion state (<a href="#7.24.6">7.24.6</a>), the wcrtomb function (<a href="#7.24.6.3.3">7.24.6.3.3</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note241" href="#note241">241)</a> Note that 0 is taken as a flag, not as the beginning of a field width.
 </small>
 <p><small><a name="note242" href="#note242">242)</a> The results of all floating conversions of a negative zero, and of negative values that round to zero,
@@ -14196,14 +14196,14 @@ If a length modifier appears with any conversion specifier other than as specifi
 </small>
 
 <h5><a name="7.19.6.2" href="#7.19.6.2">7.19.6.2 The fscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.19">&lt;stdio.h&gt;</a>
           int fscanf(FILE * restrict stream,
                const char * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fscanf function reads input from the stream pointed to by stream, under control
  of the string pointed to by format that specifies the admissible input sequences and how
@@ -14401,7 +14401,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  Trailing white space (including new-line characters) is left unread unless matched by a
  directive. The success of literal matches and suppressed assignments is not directly
  determinable other than via the %n directive.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 16 -->
  The fscanf function returns the value of the macro EOF if an input failure occurs
  before any conversion. Otherwise, the function returns the number of input items
@@ -14547,7 +14547,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  (<a href="#7.24.6">7.24.6</a>), the wcrtomb function (<a href="#7.24.6.3.3">7.24.6.3.3</a>).
 <!--page 302 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note250" href="#note250">250)</a> These white-space characters are not counted against a specified field width.
 </small>
 <p><small><a name="note251" href="#note251">251)</a> fscanf pushes back at most one input character onto the input stream. Therefore, some sequences
@@ -14561,33 +14561,33 @@ If a length modifier appears with any conversion specifier other than as specifi
 </small>
 
 <h5><a name="7.19.6.3" href="#7.19.6.3">7.19.6.3 The printf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int printf(const char * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The printf function is equivalent to fprintf with the argument stdout interposed
  before the arguments to printf.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The printf function returns the number of characters transmitted, or a negative value if
  an output or encoding error occurred.
 
 <h5><a name="7.19.6.4" href="#7.19.6.4">7.19.6.4 The scanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int scanf(const char * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The scanf function is equivalent to fscanf with the argument stdin interposed
  before the arguments to scanf.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The scanf function returns the value of the macro EOF if an input failure occurs before
  any conversion. Otherwise, the scanf function returns the number of input items
@@ -14595,14 +14595,14 @@ If a length modifier appears with any conversion specifier other than as specifi
  matching failure.
 
 <h5><a name="7.19.6.5" href="#7.19.6.5">7.19.6.5 The snprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int snprintf(char * restrict s, size_t n,
              const char * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The snprintf function is equivalent to fprintf, except that the output is written into
  an array (specified by argument s) rather than to a stream. If n is zero, nothing is written,
@@ -14611,7 +14611,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  of the characters actually written into the array. If copying takes place between objects
  that overlap, the behavior is undefined.
 <!--page 303 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The snprintf function returns the number of characters that would have been written
  had n been sufficiently large, not counting the terminating null character, or a negative
@@ -14619,39 +14619,39 @@ If a length modifier appears with any conversion specifier other than as specifi
  completely written if and only if the returned value is nonnegative and less than n.
 
 <h5><a name="7.19.6.6" href="#7.19.6.6">7.19.6.6 The sprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int sprintf(char * restrict s,
              const char * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The sprintf function is equivalent to fprintf, except that the output is written into
  an array (specified by the argument s) rather than to a stream. A null character is written
  at the end of the characters written; it is not counted as part of the returned value. If
  copying takes place between objects that overlap, the behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The sprintf function returns the number of characters written in the array, not
  counting the terminating null character, or a negative value if an encoding error occurred.
 
 <h5><a name="7.19.6.7" href="#7.19.6.7">7.19.6.7 The sscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int sscanf(const char * restrict s,
              const char * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The sscanf function is equivalent to fscanf, except that input is obtained from a
  string (specified by the argument s) rather than from a stream. Reaching the end of the
  string is equivalent to encountering end-of-file for the fscanf function. If copying
  takes place between objects that overlap, the behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The sscanf function returns the value of the macro EOF if an input failure occurs
  before any conversion. Otherwise, the sscanf function returns the number of input
@@ -14660,7 +14660,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <!--page 304 -->
 
 <h5><a name="7.19.6.8" href="#7.19.6.8">7.19.6.8 The vfprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.15">&lt;stdarg.h&gt;</a>
@@ -14669,13 +14669,13 @@ If a length modifier appears with any conversion specifier other than as specifi
              const char * restrict format,
              va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vfprintf function is equivalent to fprintf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vfprintf function does not invoke the
  va_end macro.<sup><a href="#note254"><b>254)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vfprintf function returns the number of characters transmitted, or a negative
  value if an output or encoding error occurred.
@@ -14701,13 +14701,13 @@ If a length modifier appears with any conversion specifier other than as specifi
  
 <!--page 305 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note254" href="#note254">254)</a> As the functions vfprintf, vfscanf, vprintf, vscanf, vsnprintf, vsprintf, and
  vsscanf invoke the va_arg macro, the value of arg after the return is indeterminate.
 </small>
 
 <h5><a name="7.19.6.9" href="#7.19.6.9">7.19.6.9 The vfscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.15">&lt;stdarg.h&gt;</a>
@@ -14716,13 +14716,13 @@ If a length modifier appears with any conversion specifier other than as specifi
              const char * restrict format,
              va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vfscanf function is equivalent to fscanf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vfscanf function does not invoke the
  va_end macro.<sup><a href="#note254"><b>254)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vfscanf function returns the value of the macro EOF if an input failure occurs
  before any conversion. Otherwise, the vfscanf function returns the number of input
@@ -14730,7 +14730,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  early matching failure.
 
 <h5><a name="7.19.6.10" href="#7.19.6.10">7.19.6.10 The vprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.15">&lt;stdarg.h&gt;</a>
@@ -14738,20 +14738,20 @@ If a length modifier appears with any conversion specifier other than as specifi
         int vprintf(const char * restrict format,
              va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vprintf function is equivalent to printf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vprintf function does not invoke the
  va_end macro.<sup><a href="#note254"><b>254)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vprintf function returns the number of characters transmitted, or a negative value
  if an output or encoding error occurred.
 <!--page 306 -->
 
 <h5><a name="7.19.6.11" href="#7.19.6.11">7.19.6.11 The vscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.15">&lt;stdarg.h&gt;</a>
@@ -14759,13 +14759,13 @@ If a length modifier appears with any conversion specifier other than as specifi
         int vscanf(const char * restrict format,
              va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vscanf function is equivalent to scanf, with the variable argument list replaced
  by arg, which shall have been initialized by the va_start macro (and possibly
  subsequent va_arg calls). The vscanf function does not invoke the va_end
  macro.<sup><a href="#note254"><b>254)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vscanf function returns the value of the macro EOF if an input failure occurs
  before any conversion. Otherwise, the vscanf function returns the number of input
@@ -14773,7 +14773,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  early matching failure.
 
 <h5><a name="7.19.6.12" href="#7.19.6.12">7.19.6.12 The vsnprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.15">&lt;stdarg.h&gt;</a>
@@ -14782,14 +14782,14 @@ If a length modifier appears with any conversion specifier other than as specifi
              const char * restrict format,
              va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vsnprintf function is equivalent to snprintf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vsnprintf function does not invoke the
  va_end macro.<sup><a href="#note254"><b>254)</b></a></sup> If copying takes place between objects that overlap, the behavior is
  undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vsnprintf function returns the number of characters that would have been written
  had n been sufficiently large, not counting the terminating null character, or a negative
@@ -14798,7 +14798,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <!--page 307 -->
 
 <h5><a name="7.19.6.13" href="#7.19.6.13">7.19.6.13 The vsprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.15">&lt;stdarg.h&gt;</a>
@@ -14807,20 +14807,20 @@ If a length modifier appears with any conversion specifier other than as specifi
              const char * restrict format,
              va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vsprintf function is equivalent to sprintf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vsprintf function does not invoke the
  va_end macro.<sup><a href="#note254"><b>254)</b></a></sup> If copying takes place between objects that overlap, the behavior is
  undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vsprintf function returns the number of characters written in the array, not
  counting the terminating null character, or a negative value if an encoding error occurred.
 
 <h5><a name="7.19.6.14" href="#7.19.6.14">7.19.6.14 The vsscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.15">&lt;stdarg.h&gt;</a>
@@ -14829,13 +14829,13 @@ If a length modifier appears with any conversion specifier other than as specifi
              const char * restrict format,
              va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vsscanf function is equivalent to sscanf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vsscanf function does not invoke the
  va_end macro.<sup><a href="#note254"><b>254)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vsscanf function returns the value of the macro EOF if an input failure occurs
  before any conversion. Otherwise, the vsscanf function returns the number of input
@@ -14846,19 +14846,19 @@ If a length modifier appears with any conversion specifier other than as specifi
 <h4><a name="7.19.7" href="#7.19.7">7.19.7 Character input/output functions</a></h4>
 
 <h5><a name="7.19.7.1" href="#7.19.7.1">7.19.7.1 The fgetc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.19">&lt;stdio.h&gt;</a>
          int fgetc(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If the end-of-file indicator for the input stream pointed to by stream is not set and a
  next character is present, the fgetc function obtains that character as an unsigned
  char converted to an int and advances the associated file position indicator for the
  stream (if defined).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If the end-of-file indicator for the stream is set, or if the stream is at end-of-file, the end-
  of-file indicator for the stream is set and the fgetc function returns EOF. Otherwise, the
@@ -14866,25 +14866,25 @@ If a length modifier appears with any conversion specifier other than as specifi
  If a read error occurs, the error indicator for the stream is set and the fgetc function
  returns EOF.<sup><a href="#note255"><b>255)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note255" href="#note255">255)</a> An end-of-file and a read error can be distinguished by use of the feof and ferror functions.
 </small>
 
 <h5><a name="7.19.7.2" href="#7.19.7.2">7.19.7.2 The fgets function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.19">&lt;stdio.h&gt;</a>
          char *fgets(char * restrict s, int n,
               FILE * restrict stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fgets function reads at most one less than the number of characters specified by n
  from the stream pointed to by stream into the array pointed to by s. No additional
  characters are read after a new-line character (which is retained) or after end-of-file. A
  null character is written immediately after the last character read into the array.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fgets function returns s if successful. If end-of-file is encountered and no
  characters have been read into the array, the contents of the array remain unchanged and a
@@ -14897,55 +14897,55 @@ If a length modifier appears with any conversion specifier other than as specifi
 <!--page 309 -->
 
 <h5><a name="7.19.7.3" href="#7.19.7.3">7.19.7.3 The fputc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int fputc(int c, FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fputc function writes the character specified by c (converted to an unsigned
  char) to the output stream pointed to by stream, at the position indicated by the
  associated file position indicator for the stream (if defined), and advances the indicator
  appropriately. If the file cannot support positioning requests, or if the stream was opened
  with append mode, the character is appended to the output stream.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fputc function returns the character written. If a write error occurs, the error
  indicator for the stream is set and fputc returns EOF.
 
 <h5><a name="7.19.7.4" href="#7.19.7.4">7.19.7.4 The fputs function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int fputs(const char * restrict s,
              FILE * restrict stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fputs function writes the string pointed to by s to the stream pointed to by
  stream. The terminating null character is not written.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fputs function returns EOF if a write error occurs; otherwise it returns a
  nonnegative value.
 
 <h5><a name="7.19.7.5" href="#7.19.7.5">7.19.7.5 The getc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int getc(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The getc function is equivalent to fgetc, except that if it is implemented as a macro, it
  may evaluate stream more than once, so the argument should never be an expression
  with side effects.
 <!--page 310 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The getc function returns the next character from the input stream pointed to by
  stream. If the stream is at end-of-file, the end-of-file indicator for the stream is set and
@@ -14953,16 +14953,16 @@ If a length modifier appears with any conversion specifier other than as specifi
  getc returns EOF.
 
 <h5><a name="7.19.7.6" href="#7.19.7.6">7.19.7.6 The getchar function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int getchar(void);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The getchar function is equivalent to getc with the argument stdin.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The getchar function returns the next character from the input stream pointed to by
  stdin. If the stream is at end-of-file, the end-of-file indicator for the stream is set and
@@ -14970,19 +14970,19 @@ If a length modifier appears with any conversion specifier other than as specifi
  getchar returns EOF.
 
 <h5><a name="7.19.7.7" href="#7.19.7.7">7.19.7.7 The gets function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         char *gets(char *s);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The gets function reads characters from the input stream pointed to by stdin, into the
  array pointed to by s, until end-of-file is encountered or a new-line character is read.
  Any new-line character is discarded, and a null character is written immediately after the
  last character read into the array.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The gets function returns s if successful. If end-of-file is encountered and no
  characters have been read into the array, the contents of the array remain unchanged and a
@@ -14992,63 +14992,63 @@ If a length modifier appears with any conversion specifier other than as specifi
 <!--page 311 -->
 
 <h5><a name="7.19.7.8" href="#7.19.7.8">7.19.7.8 The putc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int putc(int c, FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The putc function is equivalent to fputc, except that if it is implemented as a macro, it
  may evaluate stream more than once, so that argument should never be an expression
  with side effects.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The putc function returns the character written. If a write error occurs, the error
  indicator for the stream is set and putc returns EOF.
 
 <h5><a name="7.19.7.9" href="#7.19.7.9">7.19.7.9 The putchar function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int putchar(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The putchar function is equivalent to putc with the second argument stdout.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The putchar function returns the character written. If a write error occurs, the error
  indicator for the stream is set and putchar returns EOF.
 
 <h5><a name="7.19.7.10" href="#7.19.7.10">7.19.7.10 The puts function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int puts(const char *s);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The puts function writes the string pointed to by s to the stream pointed to by stdout,
  and appends a new-line character to the output. The terminating null character is not
  written.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The puts function returns EOF if a write error occurs; otherwise it returns a nonnegative
  value.
 <!--page 312 -->
 
 <h5><a name="7.19.7.11" href="#7.19.7.11">7.19.7.11 The ungetc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.19">&lt;stdio.h&gt;</a>
           int ungetc(int c, FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ungetc function pushes the character specified by c (converted to an unsigned
  char) back onto the input stream pointed to by stream. Pushed-back characters will be
@@ -15072,7 +15072,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  For a binary stream, its file position indicator is decremented by each successful call to
  the ungetc function; if its value was zero before a call, it is indeterminate after the
  call.<sup><a href="#note256"><b>256)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  The ungetc function returns the character pushed back after conversion, or EOF if the
  operation fails.
@@ -15083,14 +15083,14 @@ If a length modifier appears with any conversion specifier other than as specifi
  
 <!--page 313 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note256" href="#note256">256)</a> See ''future library directions'' (<a href="#7.26.9">7.26.9</a>).
 </small>
 
 <h4><a name="7.19.8" href="#7.19.8">7.19.8 Direct input/output functions</a></h4>
 
 <h5><a name="7.19.8.1" href="#7.19.8.1">7.19.8.1 The fread function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
@@ -15098,7 +15098,7 @@ If a length modifier appears with any conversion specifier other than as specifi
              size_t size, size_t nmemb,
              FILE * restrict stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fread function reads, into the array pointed to by ptr, up to nmemb elements
  whose size is specified by size, from the stream pointed to by stream. For each
@@ -15107,7 +15107,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  indicator for the stream (if defined) is advanced by the number of characters successfully
  read. If an error occurs, the resulting value of the file position indicator for the stream is
  indeterminate. If a partial element is read, its value is indeterminate.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fread function returns the number of elements successfully read, which may be
  less than nmemb if a read error or end-of-file is encountered. If size or nmemb is zero,
@@ -15115,7 +15115,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  unchanged.
 
 <h5><a name="7.19.8.2" href="#7.19.8.2">7.19.8.2 The fwrite function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
@@ -15123,7 +15123,7 @@ If a length modifier appears with any conversion specifier other than as specifi
              size_t size, size_t nmemb,
              FILE * restrict stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fwrite function writes, from the array pointed to by ptr, up to nmemb elements
  whose size is specified by size, to the stream pointed to by stream. For each object,
@@ -15133,7 +15133,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  error occurs, the resulting value of the file position indicator for the stream is
  indeterminate.
 <!--page 314 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fwrite function returns the number of elements successfully written, which will be
  less than nmemb only if a write error is encountered. If size or nmemb is zero,
@@ -15142,33 +15142,33 @@ If a length modifier appears with any conversion specifier other than as specifi
 <h4><a name="7.19.9" href="#7.19.9">7.19.9 File positioning functions</a></h4>
 
 <h5><a name="7.19.9.1" href="#7.19.9.1">7.19.9.1 The fgetpos function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int fgetpos(FILE * restrict stream,
              fpos_t * restrict pos);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fgetpos function stores the current values of the parse state (if any) and file
  position indicator for the stream pointed to by stream in the object pointed to by pos.
  The values stored contain unspecified information usable by the fsetpos function for
  repositioning the stream to its position at the time of the call to the fgetpos function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If successful, the fgetpos function returns zero; on failure, the fgetpos function
  returns nonzero and stores an implementation-defined positive value in errno.
 <p><b> Forward references</b>: the fsetpos function (<a href="#7.19.9.3">7.19.9.3</a>).
 
 <h5><a name="7.19.9.2" href="#7.19.9.2">7.19.9.2 The fseek function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int fseek(FILE *stream, long int offset, int whence);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fseek function sets the file position indicator for the stream pointed to by stream.
  If a read or write error occurs, the error indicator for the stream is set and fseek fails.
@@ -15188,19 +15188,19 @@ If a length modifier appears with any conversion specifier other than as specifi
  effects of the ungetc function on the stream, clears the end-of-file indicator for the
  stream, and then establishes the new position. After a successful fseek call, the next
  operation on an update stream may be either input or output.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  The fseek function returns nonzero only for a request that cannot be satisfied.
 <p><b> Forward references</b>: the ftell function (<a href="#7.19.9.4">7.19.9.4</a>).
 
 <h5><a name="7.19.9.3" href="#7.19.9.3">7.19.9.3 The fsetpos function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int fsetpos(FILE *stream, const fpos_t *pos);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fsetpos function sets the mbstate_t object (if any) and file position indicator
  for the stream pointed to by stream according to the value of the object pointed to by
@@ -15212,19 +15212,19 @@ If a length modifier appears with any conversion specifier other than as specifi
  on the stream, clears the end-of-file indicator for the stream, and then establishes the new
  parse state and position. After a successful fsetpos call, the next operation on an
  update stream may be either input or output.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  If successful, the fsetpos function returns zero; on failure, the fsetpos function
  returns nonzero and stores an implementation-defined positive value in errno.
 
 <h5><a name="7.19.9.4" href="#7.19.9.4">7.19.9.4 The ftell function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         long int ftell(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ftell function obtains the current value of the file position indicator for the stream
  pointed to by stream. For a binary stream, the value is the number of characters from
@@ -15234,20 +15234,20 @@ If a length modifier appears with any conversion specifier other than as specifi
  return values is not necessarily a meaningful measure of the number of characters written
 <!--page 316 -->
  or read.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If successful, the ftell function returns the current value of the file position indicator
  for the stream. On failure, the ftell function returns -1L and stores an
  implementation-defined positive value in errno.
 
 <h5><a name="7.19.9.5" href="#7.19.9.5">7.19.9.5 The rewind function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         void rewind(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The rewind function sets the file position indicator for the stream pointed to by
  stream to the beginning of the file. It is equivalent to
@@ -15255,66 +15255,66 @@ If a length modifier appears with any conversion specifier other than as specifi
         (void)fseek(stream, 0L, SEEK_SET)
 </pre>
  except that the error indicator for the stream is also cleared.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The rewind function returns no value.
 
 <h4><a name="7.19.10" href="#7.19.10">7.19.10 Error-handling functions</a></h4>
 
 <h5><a name="7.19.10.1" href="#7.19.10.1">7.19.10.1 The clearerr function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         void clearerr(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The clearerr function clears the end-of-file and error indicators for the stream pointed
  to by stream.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The clearerr function returns no value.
 <!--page 317 -->
 
 <h5><a name="7.19.10.2" href="#7.19.10.2">7.19.10.2 The feof function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int feof(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The feof function tests the end-of-file indicator for the stream pointed to by stream.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The feof function returns nonzero if and only if the end-of-file indicator is set for
  stream.
 
 <h5><a name="7.19.10.3" href="#7.19.10.3">7.19.10.3 The ferror function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         int ferror(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ferror function tests the error indicator for the stream pointed to by stream.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The ferror function returns nonzero if and only if the error indicator is set for
  stream.
 
 <h5><a name="7.19.10.4" href="#7.19.10.4">7.19.10.4 The perror function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         void perror(const char *s);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The perror function maps the error number in the integer expression errno to an
  error message. It writes a sequence of characters to the standard error stream thus: first
@@ -15322,7 +15322,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  string pointed to by s followed by a colon (:) and a space; then an appropriate error
  message string followed by a new-line character. The contents of the error message
  strings are the same as those returned by the strerror function with argument errno.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The perror function returns no value.
 <p><b> Forward references</b>: the strerror function (<a href="#7.21.6.2">7.21.6.2</a>).
@@ -15375,7 +15375,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  
 <!--page 319 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note257" href="#note257">257)</a> See ''future library directions'' (<a href="#7.26.10">7.26.10</a>).
 </small>
 
@@ -15386,26 +15386,26 @@ If a length modifier appears with any conversion specifier other than as specifi
  behavior is undefined.
 
 <h5><a name="7.20.1.1" href="#7.20.1.1">7.20.1.1 The atof function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.20">&lt;stdlib.h&gt;</a>
         double atof(const char *nptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The atof function converts the initial portion of the string pointed to by nptr to
  double representation. Except for the behavior on error, it is equivalent to
 <pre>
         strtod(nptr, (char **)NULL)
 </pre>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The atof function returns the converted value.
 <p><b> Forward references</b>: the strtod, strtof, and strtold functions (<a href="#7.20.1.3">7.20.1.3</a>).
 
 <h5><a name="7.20.1.2" href="#7.20.1.2">7.20.1.2 The atoi, atol, and atoll functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.20">&lt;stdlib.h&gt;</a>
@@ -15413,7 +15413,7 @@ If a length modifier appears with any conversion specifier other than as specifi
         long int atol(const char *nptr);
         long long int atoll(const char *nptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The atoi, atol, and atoll functions convert the initial portion of the string pointed
  to by nptr to int, long int, and long long int representation, respectively.
@@ -15423,7 +15423,7 @@ If a length modifier appears with any conversion specifier other than as specifi
         atol: strtol(nptr, (char **)NULL, 10)
         atoll: strtoll(nptr, (char **)NULL, 10)
 </pre>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The atoi, atol, and atoll functions return the converted value.
 <p><b> Forward references</b>: the strtol, strtoll, strtoul, and strtoull functions
@@ -15431,7 +15431,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <!--page 320 -->
 
 <h5><a name="7.20.1.3" href="#7.20.1.3">7.20.1.3 The strtod, strtof, and strtold functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.20">&lt;stdlib.h&gt;</a>
@@ -15442,7 +15442,7 @@ If a length modifier appears with any conversion specifier other than as specifi
         long double strtold(const char * restrict nptr,
              char ** restrict endptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strtod, strtof, and strtold functions convert the initial portion of the string
  pointed to by nptr to double, float, and long double representation,
@@ -15500,7 +15500,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  If the subject sequence is empty or does not have the expected form, no conversion is
  performed; the value of nptr is stored in the object pointed to by endptr, provided
  that endptr is not a null pointer.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 8 -->
  If the subject sequence has the hexadecimal form, FLT_RADIX is not a power of 2, and
  the result is not exactly representable, the result should be one of the two numbers in the
@@ -15519,7 +15519,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <!--page 322 -->
  stipulation that the error with respect to D should have a correct sign for the current
  rounding direction.<sup><a href="#note260"><b>260)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 10 -->
  The functions return the converted value, if any. If no conversion could be performed,
  zero is returned. If the correct value is outside the range of representable values, plus or
@@ -15529,7 +15529,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  than the smallest normalized positive number in the return type; whether errno acquires
  the value ERANGE is implementation-defined.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note258" href="#note258">258)</a> It is unspecified whether a minus-signed sequence is converted to a negative number directly or by
  negating the value resulting from converting the corresponding unsigned sequence (see <a href="#F.5">F.5</a>); the two
  methods may yield different results if rounding is toward positive or negative infinity. In either case,
@@ -15543,7 +15543,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 </small>
 
 <h5><a name="7.20.1.4" href="#7.20.1.4">7.20.1.4 The strtol, strtoll, strtoul, and strtoull functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.20">&lt;stdlib.h&gt;</a>
@@ -15564,7 +15564,7 @@ If a length modifier appears with any conversion specifier other than as specifi
               char ** restrict endptr,
               int base);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strtol, strtoll, strtoul, and strtoull functions convert the initial
  portion of the string pointed to by nptr to long int, long long int, unsigned
@@ -15609,7 +15609,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  If the subject sequence is empty or does not have the expected form, no conversion is
  performed; the value of nptr is stored in the object pointed to by endptr, provided
  that endptr is not a null pointer.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 8 -->
  The strtol, strtoll, strtoul, and strtoull functions return the converted
  value, if any. If no conversion could be performed, zero is returned. If the correct value
@@ -15621,33 +15621,33 @@ If a length modifier appears with any conversion specifier other than as specifi
 <h4><a name="7.20.2" href="#7.20.2">7.20.2 Pseudo-random sequence generation functions</a></h4>
 
 <h5><a name="7.20.2.1" href="#7.20.2.1">7.20.2.1 The rand function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.20">&lt;stdlib.h&gt;</a>
         int rand(void);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The rand function computes a sequence of pseudo-random integers in the range 0 to
  RAND_MAX.
 <p><!--para 3 -->
  The implementation shall behave as if no library function calls the rand function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The rand function returns a pseudo-random integer.
-<h6>Environmental limits</h6>
+<p><b>Environmental limits</b>
 <p><!--para 5 -->
  The value of the RAND_MAX macro shall be at least 32767.
 
 <h5><a name="7.20.2.2" href="#7.20.2.2">7.20.2.2 The srand function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.20">&lt;stdlib.h&gt;</a>
         void srand(unsigned int seed);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The srand function uses the argument as a seed for a new sequence of pseudo-random
  numbers to be returned by subsequent calls to rand. If srand is then called with the
@@ -15656,7 +15656,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  as when srand is first called with a seed value of 1.
 <p><!--para 3 -->
  The implementation shall behave as if no library function calls the srand function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The srand function returns no value.
 <p><!--para 5 -->
@@ -15691,33 +15691,33 @@ If a length modifier appears with any conversion specifier other than as specifi
  nonzero value, except that the returned pointer shall not be used to access an object.
 
 <h5><a name="7.20.3.1" href="#7.20.3.1">7.20.3.1 The calloc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.20">&lt;stdlib.h&gt;</a>
          void *calloc(size_t nmemb, size_t size);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The calloc function allocates space for an array of nmemb objects, each of whose size
  is size. The space is initialized to all bits zero.<sup><a href="#note261"><b>261)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The calloc function returns either a null pointer or a pointer to the allocated space.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note261" href="#note261">261)</a> Note that this need not be the same as the representation of floating-point zero or a null pointer
  constant.
 </small>
 
 <h5><a name="7.20.3.2" href="#7.20.3.2">7.20.3.2 The free function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.20">&lt;stdlib.h&gt;</a>
          void free(void *ptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The free function causes the space pointed to by ptr to be deallocated, that is, made
  available for further allocation. If ptr is a null pointer, no action occurs. Otherwise, if
@@ -15727,33 +15727,33 @@ If a length modifier appears with any conversion specifier other than as specifi
 <!--page 326 -->
  realloc function, or if the space has been deallocated by a call to free or realloc,
  the behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The free function returns no value.
 
 <h5><a name="7.20.3.3" href="#7.20.3.3">7.20.3.3 The malloc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.20">&lt;stdlib.h&gt;</a>
         void *malloc(size_t size);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The malloc function allocates space for an object whose size is specified by size and
  whose value is indeterminate.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The malloc function returns either a null pointer or a pointer to the allocated space.
 
 <h5><a name="7.20.3.4" href="#7.20.3.4">7.20.3.4 The realloc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.20">&lt;stdlib.h&gt;</a>
         void *realloc(void *ptr, size_t size);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The realloc function deallocates the old object pointed to by ptr and returns a
  pointer to a new object that has the size specified by size. The contents of the new
@@ -15766,7 +15766,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  calloc, malloc, or realloc function, or if the space has been deallocated by a call
  to the free or realloc function, the behavior is undefined. If memory for the new
  object cannot be allocated, the old object is not deallocated and its value is unchanged.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The realloc function returns a pointer to the new object (which may have the same
  value as a pointer to the old object), or a null pointer if the new object could not be
@@ -15776,13 +15776,13 @@ If a length modifier appears with any conversion specifier other than as specifi
 <h4><a name="7.20.4" href="#7.20.4">7.20.4 Communication with the environment</a></h4>
 
 <h5><a name="7.20.4.1" href="#7.20.4.1">7.20.4.1 The abort function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.20">&lt;stdlib.h&gt;</a>
         void abort(void);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The abort function causes abnormal program termination to occur, unless the signal
  SIGABRT is being caught and the signal handler does not return. Whether open streams
@@ -15790,37 +15790,37 @@ If a length modifier appears with any conversion specifier other than as specifi
  removed is implementation-defined. An implementation-defined form of the status
  unsuccessful termination is returned to the host environment by means of the function
  call raise(SIGABRT).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The abort function does not return to its caller.
 
 <h5><a name="7.20.4.2" href="#7.20.4.2">7.20.4.2 The atexit function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.20">&lt;stdlib.h&gt;</a>
         int atexit(void (*func)(void));
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The atexit function registers the function pointed to by func, to be called without
  arguments at normal program termination.
-<h6>Environmental limits</h6>
+<p><b>Environmental limits</b>
 <p><!--para 3 -->
  The implementation shall support the registration of at least 32 functions.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The atexit function returns zero if the registration succeeds, nonzero if it fails.
 <p><b> Forward references</b>: the exit function (<a href="#7.20.4.3">7.20.4.3</a>).
 
 <h5><a name="7.20.4.3" href="#7.20.4.3">7.20.4.3 The exit function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.20">&lt;stdlib.h&gt;</a>
         void exit(int status);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The exit function causes normal program termination to occur. If more than one call to
  the exit function is executed by a program, the behavior is undefined.
@@ -15840,23 +15840,23 @@ If a length modifier appears with any conversion specifier other than as specifi
  returned. If the value of status is EXIT_FAILURE, an implementation-defined form
  of the status unsuccessful termination is returned. Otherwise the status returned is
  implementation-defined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  The exit function cannot return to its caller.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note262" href="#note262">262)</a> Each function is called as many times as it was registered, and in the correct order with respect to
  other registered functions.
 </small>
 
 <h5><a name="7.20.4.4" href="#7.20.4.4">7.20.4.4 The _Exit function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.20">&lt;stdlib.h&gt;</a>
          void _Exit(int status);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The _Exit function causes normal program termination to occur and control to be
  returned to the host environment. No functions registered by the atexit function or
@@ -15864,7 +15864,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  host environment is determined in the same way as for the exit function (<a href="#7.20.4.3">7.20.4.3</a>).
  Whether open streams with unwritten buffered data are flushed, open streams are closed,
  or temporary files are removed is implementation-defined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The _Exit function cannot return to its caller.
  
@@ -15874,20 +15874,20 @@ If a length modifier appears with any conversion specifier other than as specifi
 <!--page 329 -->
 
 <h5><a name="7.20.4.5" href="#7.20.4.5">7.20.4.5 The getenv function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.20">&lt;stdlib.h&gt;</a>
         char *getenv(const char *name);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The getenv function searches an environment list, provided by the host environment,
  for a string that matches the string pointed to by name. The set of environment names
  and the method for altering the environment list are implementation-defined.
 <p><!--para 3 -->
  The implementation shall behave as if no library function calls the getenv function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The getenv function returns a pointer to a string associated with the matched list
  member. The string pointed to shall not be modified by the program, but may be
@@ -15895,20 +15895,20 @@ If a length modifier appears with any conversion specifier other than as specifi
  be found, a null pointer is returned.
 
 <h5><a name="7.20.4.6" href="#7.20.4.6">7.20.4.6 The system function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.20">&lt;stdlib.h&gt;</a>
         int system(const char *string);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If string is a null pointer, the system function determines whether the host
  environment has a command processor. If string is not a null pointer, the system
  function passes the string pointed to by string to that command processor to be
  executed in a manner which the implementation shall document; this might then cause the
  program calling system to behave in a non-conforming manner or to terminate.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If the argument is a null pointer, the system function returns nonzero only if a
  command processor is available. If the argument is not a null pointer, and the system
@@ -15943,7 +15943,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  comparison function, and also between any call to the comparison function and any
  movement of the objects passed as arguments to that call.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note263" href="#note263">263)</a> That is, if the value passed is p, then the following expressions are always nonzero:
 
 <pre>
@@ -15954,7 +15954,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 </small>
 
 <h5><a name="7.20.5.1" href="#7.20.5.1">7.20.5.1 The bsearch function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.20">&lt;stdlib.h&gt;</a>
@@ -15962,7 +15962,7 @@ If a length modifier appears with any conversion specifier other than as specifi
                size_t nmemb, size_t size,
                int (*compar)(const void *, const void *));
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The bsearch function searches an array of nmemb objects, the initial element of which
  is pointed to by base, for an element that matches the object pointed to by key. The
@@ -15977,25 +15977,25 @@ If a length modifier appears with any conversion specifier other than as specifi
  respectively, to be less than, to match, or to be greater than the array element. The array
  shall consist of: all the elements that compare less than, all the elements that compare
  equal to, and all the elements that compare greater than the key object, in that order.<sup><a href="#note264"><b>264)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The bsearch function returns a pointer to a matching element of the array, or a null
  pointer if no match is found. If two elements compare as equal, which element is
  matched is unspecified.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note264" href="#note264">264)</a> In practice, the entire array is sorted according to the comparison function.
 </small>
 
 <h5><a name="7.20.5.2" href="#7.20.5.2">7.20.5.2 The qsort function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.20">&lt;stdlib.h&gt;</a>
           void qsort(void *base, size_t nmemb, size_t size,
                int (*compar)(const void *, const void *));
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The qsort function sorts an array of nmemb objects, the initial element of which is
  pointed to by base. The size of each object is specified by size.
@@ -16007,7 +16007,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  or greater than the second.
 <p><!--para 4 -->
  If two elements compare as equal, their order in the resulting sorted array is unspecified.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The qsort function returns no value.
  
@@ -16019,7 +16019,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <h4><a name="7.20.6" href="#7.20.6">7.20.6 Integer arithmetic functions</a></h4>
 
 <h5><a name="7.20.6.1" href="#7.20.6.1">7.20.6.1 The abs, labs and llabs functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.20">&lt;stdlib.h&gt;</a>
@@ -16027,20 +16027,20 @@ If a length modifier appears with any conversion specifier other than as specifi
          long int labs(long int j);
          long long int llabs(long long int j);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The abs, labs, and llabs functions compute the absolute value of an integer j. If the
  result cannot be represented, the behavior is undefined.<sup><a href="#note265"><b>265)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The abs, labs, and llabs, functions return the absolute value.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note265" href="#note265">265)</a> The absolute value of the most negative number cannot be represented in two's complement.
 </small>
 
 <h5><a name="7.20.6.2" href="#7.20.6.2">7.20.6.2 The div, ldiv, and lldiv functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.20">&lt;stdlib.h&gt;</a>
@@ -16048,11 +16048,11 @@ If a length modifier appears with any conversion specifier other than as specifi
          ldiv_t ldiv(long int numer, long int denom);
          lldiv_t lldiv(long long int numer, long long int denom);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The div, ldiv, and lldiv, functions compute numer / denom and numer %
  denom in a single operation.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The div, ldiv, and lldiv functions return a structure of type div_t, ldiv_t, and
  lldiv_t, respectively, comprising both the quotient and the remainder. The structures
@@ -16076,19 +16076,19 @@ If a length modifier appears with any conversion specifier other than as specifi
  otherwise.<sup><a href="#note266"><b>266)</b></a></sup> Changing the LC_CTYPE category causes the conversion state of these
  functions to be indeterminate.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note266" href="#note266">266)</a> If the locale employs special bytes to change the shift state, these bytes do not produce separate wide
  character codes, but are grouped with an adjacent multibyte character.
 </small>
 
 <h5><a name="7.20.7.1" href="#7.20.7.1">7.20.7.1 The mblen function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.20">&lt;stdlib.h&gt;</a>
          int mblen(const char *s, size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If s is not a null pointer, the mblen function determines the number of bytes contained
  in the multibyte character pointed to by s. Except that the conversion state of the
@@ -16098,7 +16098,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 </pre>
 <p><!--para 3 -->
  The implementation shall behave as if no library function calls the mblen function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  If s is a null pointer, the mblen function returns a nonzero or zero value, if multibyte
  character encodings, respectively, do or do not have state-dependent encodings. If s is
@@ -16114,7 +16114,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <!--page 334 -->
 
 <h5><a name="7.20.7.2" href="#7.20.7.2">7.20.7.2 The mbtowc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.20">&lt;stdlib.h&gt;</a>
@@ -16122,7 +16122,7 @@ If a length modifier appears with any conversion specifier other than as specifi
              const char * restrict s,
              size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If s is not a null pointer, the mbtowc function inspects at most n bytes beginning with
  the byte pointed to by s to determine the number of bytes needed to complete the next
@@ -16133,7 +16133,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  character, the function is left in the initial conversion state.
 <p><!--para 3 -->
  The implementation shall behave as if no library function calls the mbtowc function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  If s is a null pointer, the mbtowc function returns a nonzero or zero value, if multibyte
  character encodings, respectively, do or do not have state-dependent encodings. If s is
@@ -16146,13 +16146,13 @@ If a length modifier appears with any conversion specifier other than as specifi
  macro.
 
 <h5><a name="7.20.7.3" href="#7.20.7.3">7.20.7.3 The wctomb function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.20">&lt;stdlib.h&gt;</a>
         int wctomb(char *s, wchar_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wctomb function determines the number of bytes needed to represent the multibyte
  character corresponding to the wide character given by wc (including any shift
@@ -16164,7 +16164,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <!--page 335 -->
 <p><!--para 3 -->
  The implementation shall behave as if no library function calls the wctomb function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  If s is a null pointer, the wctomb function returns a nonzero or zero value, if multibyte
  character encodings, respectively, do or do not have state-dependent encodings. If s is
@@ -16180,7 +16180,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  the current locale.
 
 <h5><a name="7.20.8.1" href="#7.20.8.1">7.20.8.1 The mbstowcs function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.20">&lt;stdlib.h&gt;</a>
@@ -16188,7 +16188,7 @@ If a length modifier appears with any conversion specifier other than as specifi
                const char * restrict s,
                size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The mbstowcs function converts a sequence of multibyte characters that begins in the
  initial shift state from the array pointed to by s into a sequence of corresponding wide
@@ -16200,7 +16200,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <p><!--para 3 -->
  No more than n elements will be modified in the array pointed to by pwcs. If copying
  takes place between objects that overlap, the behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  If an invalid multibyte character is encountered, the mbstowcs function returns
  (size_t)(-1). Otherwise, the mbstowcs function returns the number of array
@@ -16211,12 +16211,12 @@ If a length modifier appears with any conversion specifier other than as specifi
  
 <!--page 336 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note267" href="#note267">267)</a> The array will not be null-terminated if the value returned is n.
 </small>
 
 <h5><a name="7.20.8.2" href="#7.20.8.2">7.20.8.2 The wcstombs function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.20">&lt;stdlib.h&gt;</a>
@@ -16224,7 +16224,7 @@ If a length modifier appears with any conversion specifier other than as specifi
              const wchar_t * restrict pwcs,
              size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcstombs function converts a sequence of wide characters from the array pointed
  to by pwcs into a sequence of corresponding multibyte characters that begins in the
@@ -16235,7 +16235,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <p><!--para 3 -->
  No more than n bytes will be modified in the array pointed to by s. If copying takes place
  between objects that overlap, the behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  If a wide character is encountered that does not correspond to a valid multibyte character,
  the wcstombs function returns (size_t)(-1). Otherwise, the wcstombs function
@@ -16266,14 +16266,14 @@ If a length modifier appears with any conversion specifier other than as specifi
  unsigned char (and therefore every possible object representation is valid and has a
  different value).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note268" href="#note268">268)</a> See ''future library directions'' (<a href="#7.26.11">7.26.11</a>).
 </small>
 
 <h4><a name="7.21.2" href="#7.21.2">7.21.2 Copying functions</a></h4>
 
 <h5><a name="7.21.2.1" href="#7.21.2.1">7.21.2.1 The memcpy function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.21">&lt;string.h&gt;</a>
@@ -16281,12 +16281,12 @@ If a length modifier appears with any conversion specifier other than as specifi
                const void * restrict s2,
                size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The memcpy function copies n characters from the object pointed to by s2 into the
  object pointed to by s1. If copying takes place between objects that overlap, the behavior
  is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The memcpy function returns the value of s1.
  
@@ -16296,42 +16296,42 @@ If a length modifier appears with any conversion specifier other than as specifi
 <!--page 338 -->
 
 <h5><a name="7.21.2.2" href="#7.21.2.2">7.21.2.2 The memmove function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;string.h&gt;</a>
         void *memmove(void *s1, const void *s2, size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The memmove function copies n characters from the object pointed to by s2 into the
  object pointed to by s1. Copying takes place as if the n characters from the object
  pointed to by s2 are first copied into a temporary array of n characters that does not
  overlap the objects pointed to by s1 and s2, and then the n characters from the
  temporary array are copied into the object pointed to by s1.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The memmove function returns the value of s1.
 
 <h5><a name="7.21.2.3" href="#7.21.2.3">7.21.2.3 The strcpy function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;string.h&gt;</a>
         char *strcpy(char * restrict s1,
              const char * restrict s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strcpy function copies the string pointed to by s2 (including the terminating null
  character) into the array pointed to by s1. If copying takes place between objects that
  overlap, the behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strcpy function returns the value of s1.
 
 <h5><a name="7.21.2.4" href="#7.21.2.4">7.21.2.4 The strncpy function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;string.h&gt;</a>
@@ -16339,7 +16339,7 @@ If a length modifier appears with any conversion specifier other than as specifi
              const char * restrict s2,
              size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strncpy function copies not more than n characters (characters that follow a null
  character are not copied) from the array pointed to by s2 to the array pointed to by
@@ -16349,11 +16349,11 @@ If a length modifier appears with any conversion specifier other than as specifi
  If the array pointed to by s2 is a string that is shorter than n characters, null characters
  are appended to the copy in the array pointed to by s1, until n characters in all have been
  written.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The strncpy function returns the value of s1.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note269" href="#note269">269)</a> Thus, if there is no null character in the first n characters of the array pointed to by s2, the result will
  not be null-terminated.
 </small>
@@ -16361,25 +16361,25 @@ If a length modifier appears with any conversion specifier other than as specifi
 <h4><a name="7.21.3" href="#7.21.3">7.21.3 Concatenation functions</a></h4>
 
 <h5><a name="7.21.3.1" href="#7.21.3.1">7.21.3.1 The strcat function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.21">&lt;string.h&gt;</a>
           char *strcat(char * restrict s1,
                const char * restrict s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strcat function appends a copy of the string pointed to by s2 (including the
  terminating null character) to the end of the string pointed to by s1. The initial character
  of s2 overwrites the null character at the end of s1. If copying takes place between
  objects that overlap, the behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strcat function returns the value of s1.
 
 <h5><a name="7.21.3.2" href="#7.21.3.2">7.21.3.2 The strncat function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.21">&lt;string.h&gt;</a>
@@ -16387,7 +16387,7 @@ If a length modifier appears with any conversion specifier other than as specifi
                const char * restrict s2,
                size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strncat function appends not more than n characters (a null character and
  characters that follow it are not appended) from the array pointed to by s2 to the end of
@@ -16396,12 +16396,12 @@ If a length modifier appears with any conversion specifier other than as specifi
  
 <!--page 340 -->
  takes place between objects that overlap, the behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strncat function returns the value of s1.
 <p><b> Forward references</b>: the strlen function (<a href="#7.21.6.3">7.21.6.3</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note270" href="#note270">270)</a> Thus, the maximum number of characters that can end up in the array pointed to by s1 is
  strlen(s1)+n+1.
 </small>
@@ -16414,40 +16414,40 @@ If a length modifier appears with any conversion specifier other than as specifi
  compared.
 
 <h5><a name="7.21.4.1" href="#7.21.4.1">7.21.4.1 The memcmp function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;string.h&gt;</a>
          int memcmp(const void *s1, const void *s2, size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The memcmp function compares the first n characters of the object pointed to by s1 to
  the first n characters of the object pointed to by s2.<sup><a href="#note271"><b>271)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The memcmp function returns an integer greater than, equal to, or less than zero,
  accordingly as the object pointed to by s1 is greater than, equal to, or less than the object
  pointed to by s2.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note271" href="#note271">271)</a> The contents of ''holes'' used as padding for purposes of alignment within structure objects are
  indeterminate. Strings shorter than their allocated space and unions may also cause problems in
  comparison.
 </small>
 
 <h5><a name="7.21.4.2" href="#7.21.4.2">7.21.4.2 The strcmp function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;string.h&gt;</a>
          int strcmp(const char *s1, const char *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strcmp function compares the string pointed to by s1 to the string pointed to by
  s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strcmp function returns an integer greater than, equal to, or less than zero,
  accordingly as the string pointed to by s1 is greater than, equal to, or less than the string
@@ -16456,42 +16456,42 @@ If a length modifier appears with any conversion specifier other than as specifi
  pointed to by s2.
 
 <h5><a name="7.21.4.3" href="#7.21.4.3">7.21.4.3 The strcoll function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;string.h&gt;</a>
         int strcoll(const char *s1, const char *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strcoll function compares the string pointed to by s1 to the string pointed to by
  s2, both interpreted as appropriate to the LC_COLLATE category of the current locale.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strcoll function returns an integer greater than, equal to, or less than zero,
  accordingly as the string pointed to by s1 is greater than, equal to, or less than the string
  pointed to by s2 when both are interpreted as appropriate to the current locale.
 
 <h5><a name="7.21.4.4" href="#7.21.4.4">7.21.4.4 The strncmp function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;string.h&gt;</a>
         int strncmp(const char *s1, const char *s2, size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strncmp function compares not more than n characters (characters that follow a
  null character are not compared) from the array pointed to by s1 to the array pointed to
  by s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strncmp function returns an integer greater than, equal to, or less than zero,
  accordingly as the possibly null-terminated array pointed to by s1 is greater than, equal
  to, or less than the possibly null-terminated array pointed to by s2.
 
 <h5><a name="7.21.4.5" href="#7.21.4.5">7.21.4.5 The strxfrm function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;string.h&gt;</a>
@@ -16499,7 +16499,7 @@ If a length modifier appears with any conversion specifier other than as specifi
              const char * restrict s2,
              size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strxfrm function transforms the string pointed to by s2 and places the resulting
  string into the array pointed to by s1. The transformation is such that if the strcmp
@@ -16510,7 +16510,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  pointed to by s1, including the terminating null character. If n is zero, s1 is permitted to
  be a null pointer. If copying takes place between objects that overlap, the behavior is
  undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strxfrm function returns the length of the transformed string (not including the
  terminating null character). If the value returned is n or more, the contents of the array
@@ -16526,131 +16526,131 @@ If a length modifier appears with any conversion specifier other than as specifi
 <h4><a name="7.21.5" href="#7.21.5">7.21.5 Search functions</a></h4>
 
 <h5><a name="7.21.5.1" href="#7.21.5.1">7.21.5.1 The memchr function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;string.h&gt;</a>
         void *memchr(const void *s, int c, size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The memchr function locates the first occurrence of c (converted to an unsigned
  char) in the initial n characters (each interpreted as unsigned char) of the object
  pointed to by s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The memchr function returns a pointer to the located character, or a null pointer if the
  character does not occur in the object.
 
 <h5><a name="7.21.5.2" href="#7.21.5.2">7.21.5.2 The strchr function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;string.h&gt;</a>
         char *strchr(const char *s, int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strchr function locates the first occurrence of c (converted to a char) in the
  string pointed to by s. The terminating null character is considered to be part of the
  string.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strchr function returns a pointer to the located character, or a null pointer if the
  character does not occur in the string.
 <!--page 343 -->
 
 <h5><a name="7.21.5.3" href="#7.21.5.3">7.21.5.3 The strcspn function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;string.h&gt;</a>
         size_t strcspn(const char *s1, const char *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strcspn function computes the length of the maximum initial segment of the string
  pointed to by s1 which consists entirely of characters not from the string pointed to by
  s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strcspn function returns the length of the segment.
 
 <h5><a name="7.21.5.4" href="#7.21.5.4">7.21.5.4 The strpbrk function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;string.h&gt;</a>
         char *strpbrk(const char *s1, const char *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strpbrk function locates the first occurrence in the string pointed to by s1 of any
  character from the string pointed to by s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strpbrk function returns a pointer to the character, or a null pointer if no character
  from s2 occurs in s1.
 
 <h5><a name="7.21.5.5" href="#7.21.5.5">7.21.5.5 The strrchr function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;string.h&gt;</a>
         char *strrchr(const char *s, int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strrchr function locates the last occurrence of c (converted to a char) in the
  string pointed to by s. The terminating null character is considered to be part of the
  string.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strrchr function returns a pointer to the character, or a null pointer if c does not
  occur in the string.
 <!--page 344 -->
 
 <h5><a name="7.21.5.6" href="#7.21.5.6">7.21.5.6 The strspn function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;string.h&gt;</a>
         size_t strspn(const char *s1, const char *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strspn function computes the length of the maximum initial segment of the string
  pointed to by s1 which consists entirely of characters from the string pointed to by s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strspn function returns the length of the segment.
 
 <h5><a name="7.21.5.7" href="#7.21.5.7">7.21.5.7 The strstr function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;string.h&gt;</a>
         char *strstr(const char *s1, const char *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strstr function locates the first occurrence in the string pointed to by s1 of the
  sequence of characters (excluding the terminating null character) in the string pointed to
  by s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strstr function returns a pointer to the located string, or a null pointer if the string
  is not found. If s2 points to a string with zero length, the function returns s1.
 
 <h5><a name="7.21.5.8" href="#7.21.5.8">7.21.5.8 The strtok function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;string.h&gt;</a>
         char *strtok(char * restrict s1,
              const char * restrict s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  A sequence of calls to the strtok function breaks the string pointed to by s1 into a
  sequence of tokens, each of which is delimited by a character from the string pointed to
@@ -16675,7 +16675,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  searching from the saved pointer and behaves as described above.
 <p><!--para 6 -->
  The implementation shall behave as if no library function calls the strtok function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 7 -->
  The strtok function returns a pointer to the first character of a token, or a null pointer
  if there is no token.
@@ -16695,52 +16695,52 @@ If a length modifier appears with any conversion specifier other than as specifi
 <h4><a name="7.21.6" href="#7.21.6">7.21.6 Miscellaneous functions</a></h4>
 
 <h5><a name="7.21.6.1" href="#7.21.6.1">7.21.6.1 The memset function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;string.h&gt;</a>
          void *memset(void *s, int c, size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The memset function copies the value of c (converted to an unsigned char) into
  each of the first n characters of the object pointed to by s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The memset function returns the value of s.
 <!--page 346 -->
 
 <h5><a name="7.21.6.2" href="#7.21.6.2">7.21.6.2 The strerror function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;string.h&gt;</a>
         char *strerror(int errnum);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strerror function maps the number in errnum to a message string. Typically,
  the values for errnum come from errno, but strerror shall map any value of type
  int to a message.
 <p><!--para 3 -->
  The implementation shall behave as if no library function calls the strerror function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The strerror function returns a pointer to the string, the contents of which are locale-
  specific. The array pointed to shall not be modified by the program, but may be
  overwritten by a subsequent call to the strerror function.
 
 <h5><a name="7.21.6.3" href="#7.21.6.3">7.21.6.3 The strlen function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;string.h&gt;</a>
         size_t strlen(const char *s);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strlen function computes the length of the string pointed to by s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strlen function returns the number of characters that precede the terminating null
  character.
@@ -16870,7 +16870,7 @@ If a length modifier appears with any conversion specifier other than as specifi
              cproj(ldc)                          cprojl(ldc)
 </pre>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note272" href="#note272">272)</a> Like other function-like macros in Standard libraries, each type-generic macro can be suppressed to
  make available the corresponding ordinary function.
 </small>
@@ -16932,23 +16932,23 @@ If a length modifier appears with any conversion specifier other than as specifi
  The value of tm_isdst is positive if Daylight Saving Time is in effect, zero if Daylight
  Saving Time is not in effect, and negative if the information is not available.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note274" href="#note274">274)</a> The range [0, 60] for tm_sec allows for a positive leap second.
 </small>
 
 <h4><a name="7.23.2" href="#7.23.2">7.23.2 Time manipulation functions</a></h4>
 
 <h5><a name="7.23.2.1" href="#7.23.2.1">7.23.2.1 The clock function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.23">&lt;time.h&gt;</a>
          clock_t clock(void);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The clock function determines the processor time used.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The clock function returns the implementation's best approximation to the processor
  time used by the program since the beginning of an implementation-defined era related
@@ -16957,23 +16957,23 @@ If a length modifier appears with any conversion specifier other than as specifi
  the processor time used is not available or its value cannot be represented, the function
  returns the value (clock_t)(-1).<sup><a href="#note275"><b>275)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note275" href="#note275">275)</a> In order to measure the time spent in a program, the clock function should be called at the start of
  the program and its return value subtracted from the value returned by subsequent calls.
 </small>
 
 <h5><a name="7.23.2.2" href="#7.23.2.2">7.23.2.2 The difftime function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.23">&lt;time.h&gt;</a>
          double difftime(time_t time1, time_t time0);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The difftime function computes the difference between two calendar times: time1 -
  time0.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The difftime function returns the difference expressed in seconds as a double.
  
@@ -16983,13 +16983,13 @@ If a length modifier appears with any conversion specifier other than as specifi
 <!--page 352 -->
 
 <h5><a name="7.23.2.3" href="#7.23.2.3">7.23.2.3 The mktime function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.23">&lt;time.h&gt;</a>
          time_t mktime(struct tm *timeptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The mktime function converts the broken-down time, expressed as local time, in the
  structure pointed to by timeptr into a calendar time value with the same encoding as
@@ -17000,7 +17000,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  set appropriately, and the other components are set to represent the specified calendar
  time, but with their values forced to the ranges indicated above; the final value of
  tm_mday is not set until tm_mon and tm_year are determined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The mktime function returns the specified calendar time encoded as a value of type
  time_t. If the calendar time cannot be represented, the function returns the value
@@ -17036,24 +17036,24 @@ If a length modifier appears with any conversion specifier other than as specifi
 </pre>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note276" href="#note276">276)</a> Thus, a positive or zero value for tm_isdst causes the mktime function to presume initially that
  Daylight Saving Time, respectively, is or is not in effect for the specified time. A negative value
  causes it to attempt to determine whether Daylight Saving Time is in effect for the specified time.
 </small>
 
 <h5><a name="7.23.2.4" href="#7.23.2.4">7.23.2.4 The time function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.23">&lt;time.h&gt;</a>
         time_t time(time_t *timer);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The time function determines the current calendar time. The encoding of the value is
  unspecified.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The time function returns the implementation's best approximation to the current
  calendar time. The value (time_t)(-1) is returned if the calendar time is not
@@ -17070,13 +17070,13 @@ If a length modifier appears with any conversion specifier other than as specifi
  functions call these functions.
 
 <h5><a name="7.23.3.1" href="#7.23.3.1">7.23.3.1 The asctime function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.23">&lt;time.h&gt;</a>
         char *asctime(const struct tm *timeptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The asctime function converts the broken-down time in the structure pointed to by
  timeptr into a string in the form
@@ -17105,25 +17105,25 @@ If a length modifier appears with any conversion specifier other than as specifi
         return result;
  }
 </pre>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The asctime function returns a pointer to the string.
 
 <h5><a name="7.23.3.2" href="#7.23.3.2">7.23.3.2 The ctime function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.23">&lt;time.h&gt;</a>
         char *ctime(const time_t *timer);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ctime function converts the calendar time pointed to by timer to local time in the
  form of a string. It is equivalent to
 <pre>
         asctime(localtime(timer))
 </pre>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The ctime function returns the pointer returned by the asctime function with that
  broken-down time as argument.
@@ -17131,39 +17131,39 @@ If a length modifier appears with any conversion specifier other than as specifi
 <!--page 355 -->
 
 <h5><a name="7.23.3.3" href="#7.23.3.3">7.23.3.3 The gmtime function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.23">&lt;time.h&gt;</a>
         struct tm *gmtime(const time_t *timer);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The gmtime function converts the calendar time pointed to by timer into a broken-
  down time, expressed as UTC.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The gmtime function returns a pointer to the broken-down time, or a null pointer if the
  specified time cannot be converted to UTC.
 
 <h5><a name="7.23.3.4" href="#7.23.3.4">7.23.3.4 The localtime function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.23">&lt;time.h&gt;</a>
         struct tm *localtime(const time_t *timer);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The localtime function converts the calendar time pointed to by timer into a
  broken-down time, expressed as local time.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The localtime function returns a pointer to the broken-down time, or a null pointer if
  the specified time cannot be converted to local time.
 
 <h5><a name="7.23.3.5" href="#7.23.3.5">7.23.3.5 The strftime function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.23">&lt;time.h&gt;</a>
@@ -17172,7 +17172,7 @@ If a length modifier appears with any conversion specifier other than as specifi
              const char * restrict format,
              const struct tm * restrict timeptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strftime function places characters into the array pointed to by s as controlled by
  the string pointed to by format. The format shall be a multibyte character sequence,
@@ -17313,7 +17313,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <dt> %Z  <dd>  implementation-defined.
 </dl>
 <!--page 359 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 8 -->
  If the total number of resulting characters including the terminating null character is not
  more than maxsize, the strftime function returns the number of characters placed
@@ -17376,7 +17376,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  subclause causes copying to take place between objects that overlap, the behavior is
  undefined.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note277" href="#note277">277)</a> See ''future library directions'' (<a href="#7.26.12">7.26.12</a>).
 </small>
 <p><small><a name="note278" href="#note278">278)</a> wchar_t and wint_t can be the same integer type.
@@ -17389,12 +17389,12 @@ If a length modifier appears with any conversion specifier other than as specifi
  The formatted wide character input/output functions shall behave as if there is a sequence
  point after the actions associated with each specifier.<sup><a href="#note280"><b>280)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note280" href="#note280">280)</a> The fwprintf functions perform writes to memory for the %n specifier.
 </small>
 
 <h5><a name="7.24.2.1" href="#7.24.2.1">7.24.2.1 The fwprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.19">&lt;stdio.h&gt;</a>
@@ -17402,7 +17402,7 @@ If a length modifier appears with any conversion specifier other than as specifi
          int fwprintf(FILE * restrict stream,
               const wchar_t * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fwprintf function writes output to the stream pointed to by stream, under
  control of the wide string pointed to by format that specifies how subsequent arguments
@@ -17640,7 +17640,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <p><!--para 11 -->
  For a and A conversions, if FLT_RADIX is a power of 2, the value is correctly rounded
  to a hexadecimal floating number with the given precision.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 12 -->
  For a and A conversions, if FLT_RADIX is not a power of 2 and the result is not exactly
  representable in the given precision, the result should be one of the two adjacent numbers
@@ -17655,13 +17655,13 @@ If a length modifier appears with any conversion specifier other than as specifi
  adjacent decimal strings L &lt; U, both having DECIMAL_DIG significant digits; the value
  of the resultant decimal string D should satisfy L &lt;= D &lt;= U, with the extra stipulation that
  the error should have a correct sign for the current rounding direction.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 14 -->
  The fwprintf function returns the number of wide characters transmitted, or a negative
  value if an output or encoding error occurred.
  
 <!--page 368 -->
-<h6>Environmental limits</h6>
+<p><b>Environmental limits</b>
 <p><!--para 15 -->
  The number of wide characters that can be produced by any single conversion shall be at
  least 4095.
@@ -17683,7 +17683,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <p><b> Forward references</b>:          the btowc function (<a href="#7.24.6.1.1">7.24.6.1.1</a>), the mbrtowc function
  (<a href="#7.24.6.3.2">7.24.6.3.2</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note281" href="#note281">281)</a> Note that 0 is taken as a flag, not as the beginning of a field width.
 </small>
 <p><small><a name="note282" href="#note282">282)</a> The results of all floating conversions of a negative zero, and of negative values that round to zero,
@@ -17708,7 +17708,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 </small>
 
 <h5><a name="7.24.2.2" href="#7.24.2.2">7.24.2.2 The fwscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
@@ -17716,7 +17716,7 @@ If a length modifier appears with any conversion specifier other than as specifi
         int fwscanf(FILE * restrict stream,
              const wchar_t * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fwscanf function reads input from the stream pointed to by stream, under
  control of the wide string pointed to by format that specifies the admissible input
@@ -17914,7 +17914,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  Trailing white space (including new-line wide characters) is left unread unless matched
  by a directive. The success of literal matches and suppressed assignments is not directly
  determinable other than via the %n directive.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 16 -->
  The fwscanf function returns the value of the macro EOF if an input failure occurs
  before any conversion. Otherwise, the function returns the number of input items
@@ -17958,7 +17958,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  wcstol, wcstoll, wcstoul, and wcstoull functions (<a href="#7.24.4.1.2">7.24.4.1.2</a>), the wcrtomb
  function (<a href="#7.24.6.3.3">7.24.6.3.3</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note288" href="#note288">288)</a> These white-space wide characters are not counted against a specified field width.
 </small>
 <p><small><a name="note289" href="#note289">289)</a> fwscanf pushes back at most one input wide character onto the input stream. Therefore, some
@@ -17968,7 +17968,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 </small>
 
 <h5><a name="7.24.2.3" href="#7.24.2.3">7.24.2.3 The swprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
@@ -17976,33 +17976,33 @@ If a length modifier appears with any conversion specifier other than as specifi
              size_t n,
              const wchar_t * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The swprintf function is equivalent to fwprintf, except that the argument s
  specifies an array of wide characters into which the generated output is to be written,
  rather than written to a stream. No more than n wide characters are written, including a
  terminating null wide character, which is always added (unless n is zero).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The swprintf function returns the number of wide characters written in the array, not
  counting the terminating null wide character, or a negative value if an encoding error
  occurred or if n or more wide characters were requested to be written.
 
 <h5><a name="7.24.2.4" href="#7.24.2.4">7.24.2.4 The swscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         int swscanf(const wchar_t * restrict s,
              const wchar_t * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The swscanf function is equivalent to fwscanf, except that the argument s specifies a
  wide string from which the input is to be obtained, rather than from a stream. Reaching
  the end of the wide string is equivalent to encountering end-of-file for the fwscanf
  function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The swscanf function returns the value of the macro EOF if an input failure occurs
  before any conversion. Otherwise, the swscanf function returns the number of input
@@ -18011,7 +18011,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <!--page 375 -->
 
 <h5><a name="7.24.2.5" href="#7.24.2.5">7.24.2.5 The vfwprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.15">&lt;stdarg.h&gt;</a>
@@ -18021,13 +18021,13 @@ If a length modifier appears with any conversion specifier other than as specifi
              const wchar_t * restrict format,
              va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vfwprintf function is equivalent to fwprintf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vfwprintf function does not invoke the
  va_end macro.<sup><a href="#note291"><b>291)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vfwprintf function returns the number of wide characters transmitted, or a
  negative value if an output or encoding error occurred.
@@ -18055,13 +18055,13 @@ If a length modifier appears with any conversion specifier other than as specifi
  
 <!--page 376 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note291" href="#note291">291)</a> As the functions vfwprintf, vswprintf, vfwscanf, vwprintf, vwscanf, and vswscanf
  invoke the va_arg macro, the value of arg after the return is indeterminate.
 </small>
 
 <h5><a name="7.24.2.6" href="#7.24.2.6">7.24.2.6 The vfwscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.15">&lt;stdarg.h&gt;</a>
@@ -18071,13 +18071,13 @@ If a length modifier appears with any conversion specifier other than as specifi
              const wchar_t * restrict format,
              va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vfwscanf function is equivalent to fwscanf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vfwscanf function does not invoke the
  va_end macro.<sup><a href="#note291"><b>291)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vfwscanf function returns the value of the macro EOF if an input failure occurs
  before any conversion. Otherwise, the vfwscanf function returns the number of input
@@ -18085,7 +18085,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  early matching failure.
 
 <h5><a name="7.24.2.7" href="#7.24.2.7">7.24.2.7 The vswprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.15">&lt;stdarg.h&gt;</a>
@@ -18095,13 +18095,13 @@ If a length modifier appears with any conversion specifier other than as specifi
              const wchar_t * restrict format,
              va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vswprintf function is equivalent to swprintf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vswprintf function does not invoke the
  va_end macro.<sup><a href="#note291"><b>291)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vswprintf function returns the number of wide characters written in the array, not
  counting the terminating null wide character, or a negative value if an encoding error
@@ -18109,7 +18109,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <!--page 377 -->
 
 <h5><a name="7.24.2.8" href="#7.24.2.8">7.24.2.8 The vswscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.15">&lt;stdarg.h&gt;</a>
@@ -18118,13 +18118,13 @@ If a length modifier appears with any conversion specifier other than as specifi
              const wchar_t * restrict format,
              va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vswscanf function is equivalent to swscanf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vswscanf function does not invoke the
  va_end macro.<sup><a href="#note291"><b>291)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vswscanf function returns the value of the macro EOF if an input failure occurs
  before any conversion. Otherwise, the vswscanf function returns the number of input
@@ -18132,7 +18132,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  early matching failure.
 
 <h5><a name="7.24.2.9" href="#7.24.2.9">7.24.2.9 The vwprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.15">&lt;stdarg.h&gt;</a>
@@ -18140,20 +18140,20 @@ If a length modifier appears with any conversion specifier other than as specifi
         int vwprintf(const wchar_t * restrict format,
              va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vwprintf function is equivalent to wprintf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vwprintf function does not invoke the
  va_end macro.<sup><a href="#note291"><b>291)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vwprintf function returns the number of wide characters transmitted, or a negative
  value if an output or encoding error occurred.
 <!--page 378 -->
 
 <h5><a name="7.24.2.10" href="#7.24.2.10">7.24.2.10 The vwscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.15">&lt;stdarg.h&gt;</a>
@@ -18161,13 +18161,13 @@ If a length modifier appears with any conversion specifier other than as specifi
         int vwscanf(const wchar_t * restrict format,
              va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vwscanf function is equivalent to wscanf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vwscanf function does not invoke the
  va_end macro.<sup><a href="#note291"><b>291)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vwscanf function returns the value of the macro EOF if an input failure occurs
  before any conversion. Otherwise, the vwscanf function returns the number of input
@@ -18175,34 +18175,34 @@ If a length modifier appears with any conversion specifier other than as specifi
  early matching failure.
 
 <h5><a name="7.24.2.11" href="#7.24.2.11">7.24.2.11 The wprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         int wprintf(const wchar_t * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wprintf function is equivalent to fwprintf with the argument stdout
  interposed before the arguments to wprintf.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wprintf function returns the number of wide characters transmitted, or a negative
  value if an output or encoding error occurred.
 
 <h5><a name="7.24.2.12" href="#7.24.2.12">7.24.2.12 The wscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         int wscanf(const wchar_t * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wscanf function is equivalent to fwscanf with the argument stdin interposed
  before the arguments to wscanf.
 <!--page 379 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wscanf function returns the value of the macro EOF if an input failure occurs
  before any conversion. Otherwise, the wscanf function returns the number of input
@@ -18212,20 +18212,20 @@ If a length modifier appears with any conversion specifier other than as specifi
 <h4><a name="7.24.3" href="#7.24.3">7.24.3 Wide character input/output functions</a></h4>
 
 <h5><a name="7.24.3.1" href="#7.24.3.1">7.24.3.1 The fgetwc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.19">&lt;stdio.h&gt;</a>
          #include <a href="#7.24">&lt;wchar.h&gt;</a>
          wint_t fgetwc(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If the end-of-file indicator for the input stream pointed to by stream is not set and a
  next wide character is present, the fgetwc function obtains that wide character as a
  wchar_t converted to a wint_t and advances the associated file position indicator for
  the stream (if defined).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If the end-of-file indicator for the stream is set, or if the stream is at end-of-file, the end-
  of-file indicator for the stream is set and the fgetwc function returns WEOF. Otherwise,
@@ -18234,13 +18234,13 @@ If a length modifier appears with any conversion specifier other than as specifi
  function returns WEOF. If an encoding error occurs (including too few bytes), the value of
  the macro EILSEQ is stored in errno and the fgetwc function returns WEOF.<sup><a href="#note292"><b>292)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note292" href="#note292">292)</a> An end-of-file and a read error can be distinguished by use of the feof and ferror functions.
  Also, errno will be set to EILSEQ by input/output functions only if an encoding error occurs.
 </small>
 
 <h5><a name="7.24.3.2" href="#7.24.3.2">7.24.3.2 The fgetws function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.19">&lt;stdio.h&gt;</a>
@@ -18248,7 +18248,7 @@ If a length modifier appears with any conversion specifier other than as specifi
          wchar_t *fgetws(wchar_t * restrict s,
               int n, FILE * restrict stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fgetws function reads at most one less than the number of wide characters
  specified by n from the stream pointed to by stream into the array pointed to by s. No
@@ -18258,7 +18258,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  additional wide characters are read after a new-line wide character (which is retained) or
  after end-of-file. A null wide character is written immediately after the last wide
  character read into the array.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fgetws function returns s if successful. If end-of-file is encountered and no
  characters have been read into the array, the contents of the array remain unchanged and a
@@ -18266,28 +18266,28 @@ If a length modifier appears with any conversion specifier other than as specifi
  contents are indeterminate and a null pointer is returned.
 
 <h5><a name="7.24.3.3" href="#7.24.3.3">7.24.3.3 The fputwc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         wint_t fputwc(wchar_t c, FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fputwc function writes the wide character specified by c to the output stream
  pointed to by stream, at the position indicated by the associated file position indicator
  for the stream (if defined), and advances the indicator appropriately. If the file cannot
  support positioning requests, or if the stream was opened with append mode, the
  character is appended to the output stream.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fputwc function returns the wide character written. If a write error occurs, the
  error indicator for the stream is set and fputwc returns WEOF. If an encoding error
  occurs, the value of the macro EILSEQ is stored in errno and fputwc returns WEOF.
 
 <h5><a name="7.24.3.4" href="#7.24.3.4">7.24.3.4 The fputws function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
@@ -18295,60 +18295,60 @@ If a length modifier appears with any conversion specifier other than as specifi
         int fputws(const wchar_t * restrict s,
              FILE * restrict stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fputws function writes the wide string pointed to by s to the stream pointed to by
  stream. The terminating null wide character is not written.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fputws function returns EOF if a write or encoding error occurs; otherwise, it
  returns a nonnegative value.
 <!--page 381 -->
 
 <h5><a name="7.24.3.5" href="#7.24.3.5">7.24.3.5 The fwide function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.19">&lt;stdio.h&gt;</a>
          #include <a href="#7.24">&lt;wchar.h&gt;</a>
          int fwide(FILE *stream, int mode);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fwide function determines the orientation of the stream pointed to by stream. If
  mode is greater than zero, the function first attempts to make the stream wide oriented. If
  mode is less than zero, the function first attempts to make the stream byte oriented.<sup><a href="#note293"><b>293)</b></a></sup>
  Otherwise, mode is zero and the function does not alter the orientation of the stream.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fwide function returns a value greater than zero if, after the call, the stream has
  wide orientation, a value less than zero if the stream has byte orientation, or zero if the
  stream has no orientation.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note293" href="#note293">293)</a> If the orientation of the stream has already been determined, fwide does not change it.
 </small>
 
 <h5><a name="7.24.3.6" href="#7.24.3.6">7.24.3.6 The getwc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.19">&lt;stdio.h&gt;</a>
          #include <a href="#7.24">&lt;wchar.h&gt;</a>
          wint_t getwc(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The getwc function is equivalent to fgetwc, except that if it is implemented as a
  macro, it may evaluate stream more than once, so the argument should never be an
  expression with side effects.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The getwc function returns the next wide character from the input stream pointed to by
  stream, or WEOF.
 
 <h5><a name="7.24.3.7" href="#7.24.3.7">7.24.3.7 The getwchar function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.24">&lt;wchar.h&gt;</a>
@@ -18359,54 +18359,54 @@ If a length modifier appears with any conversion specifier other than as specifi
  
  
 <!--page 382 -->
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The getwchar function is equivalent to getwc with the argument stdin.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The getwchar function returns the next wide character from the input stream pointed to
  by stdin, or WEOF.
 
 <h5><a name="7.24.3.8" href="#7.24.3.8">7.24.3.8 The putwc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         wint_t putwc(wchar_t c, FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The putwc function is equivalent to fputwc, except that if it is implemented as a
  macro, it may evaluate stream more than once, so that argument should never be an
  expression with side effects.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The putwc function returns the wide character written, or WEOF.
 
 <h5><a name="7.24.3.9" href="#7.24.3.9">7.24.3.9 The putwchar function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         wint_t putwchar(wchar_t c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The putwchar function is equivalent to putwc with the second argument stdout.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The putwchar function returns the character written, or WEOF.
 
 <h5><a name="7.24.3.10" href="#7.24.3.10">7.24.3.10 The ungetwc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         wint_t ungetwc(wint_t c, FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ungetwc function pushes the wide character specified by c back onto the input
  stream pointed to by stream. Pushed-back wide characters will be returned by
@@ -18431,7 +18431,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  back. For a text or binary stream, the value of its file position indicator after a successful
  call to the ungetwc function is unspecified until all pushed-back wide characters are
  read or discarded.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  The ungetwc function returns the wide character pushed back, or WEOF if the operation
  fails.
@@ -18455,7 +18455,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <h5><a name="7.24.4.1" href="#7.24.4.1">7.24.4.1 Wide string numeric conversion functions</a></h5>
 
 <h5><a name="7.24.4.1.1" href="#7.24.4.1.1">7.24.4.1.1 The wcstod, wcstof, and wcstold functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
@@ -18466,7 +18466,7 @@ If a length modifier appears with any conversion specifier other than as specifi
         long double wcstold(const wchar_t * restrict nptr,
              wchar_t ** restrict endptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcstod, wcstof, and wcstold functions convert the initial portion of the wide
  string pointed to by nptr to double, float, and long double representation,
@@ -18529,7 +18529,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  If the subject sequence is empty or does not have the expected form, no conversion is
  performed; the value of nptr is stored in the object pointed to by endptr, provided
  that endptr is not a null pointer.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 8 -->
  If the subject sequence has the hexadecimal form, FLT_RADIX is not a power of 2, and
  the result is not exactly representable, the result should be one of the two numbers in the
@@ -18550,7 +18550,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  correctly rounding L and U according to the current rounding direction, with the extra
  stipulation that the error with respect to D should have a correct sign for the current
  rounding direction.<sup><a href="#note296"><b>296)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 10 -->
  The functions return the converted value, if any. If no conversion could be performed,
  zero is returned. If the correct value is outside the range of representable values, plus or
@@ -18565,7 +18565,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  
 <!--page 387 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note294" href="#note294">294)</a> It is unspecified whether a minus-signed sequence is converted to a negative number directly or by
  negating the value resulting from converting the corresponding unsigned sequence (see <a href="#F.5">F.5</a>); the two
  methods may yield different results if rounding is toward positive or negative infinity. In either case,
@@ -18579,7 +18579,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 </small>
 
 <h5><a name="7.24.4.1.2" href="#7.24.4.1.2">7.24.4.1.2 The wcstol, wcstoll, wcstoul, and wcstoull functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
@@ -18600,7 +18600,7 @@ If a length modifier appears with any conversion specifier other than as specifi
              wchar_t ** restrict endptr,
              int base);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcstol, wcstoll, wcstoul, and wcstoull functions convert the initial
  portion of the wide string pointed to by nptr to long int, long long int,
@@ -18645,7 +18645,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  If the subject sequence is empty or does not have the expected form, no conversion is
  performed; the value of nptr is stored in the object pointed to by endptr, provided
  that endptr is not a null pointer.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 8 -->
  The wcstol, wcstoll, wcstoul, and wcstoull functions return the converted
  value, if any. If no conversion could be performed, zero is returned. If the correct value
@@ -18656,24 +18656,24 @@ If a length modifier appears with any conversion specifier other than as specifi
 <h5><a name="7.24.4.2" href="#7.24.4.2">7.24.4.2 Wide string copying functions</a></h5>
 
 <h5><a name="7.24.4.2.1" href="#7.24.4.2.1">7.24.4.2.1 The wcscpy function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         wchar_t *wcscpy(wchar_t * restrict s1,
              const wchar_t * restrict s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcscpy function copies the wide string pointed to by s2 (including the terminating
  null wide character) into the array pointed to by s1.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcscpy function returns the value of s1.
 <!--page 389 -->
 
 <h5><a name="7.24.4.2.2" href="#7.24.4.2.2">7.24.4.2.2 The wcsncpy function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.24">&lt;wchar.h&gt;</a>
@@ -18681,7 +18681,7 @@ If a length modifier appears with any conversion specifier other than as specifi
                const wchar_t * restrict s2,
                size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcsncpy function copies not more than n wide characters (those that follow a null
  wide character are not copied) from the array pointed to by s2 to the array pointed to by
@@ -18690,17 +18690,17 @@ If a length modifier appears with any conversion specifier other than as specifi
  If the array pointed to by s2 is a wide string that is shorter than n wide characters, null
  wide characters are appended to the copy in the array pointed to by s1, until n wide
  characters in all have been written.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The wcsncpy function returns the value of s1.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note297" href="#note297">297)</a> Thus, if there is no null wide character in the first n wide characters of the array pointed to by s2, the
  result will not be null-terminated.
 </small>
 
 <h5><a name="7.24.4.2.3" href="#7.24.4.2.3">7.24.4.2.3 The wmemcpy function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.24">&lt;wchar.h&gt;</a>
@@ -18708,11 +18708,11 @@ If a length modifier appears with any conversion specifier other than as specifi
                const wchar_t * restrict s2,
                size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wmemcpy function copies n wide characters from the object pointed to by s2 to the
  object pointed to by s1.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wmemcpy function returns the value of s1.
  
@@ -18722,45 +18722,45 @@ If a length modifier appears with any conversion specifier other than as specifi
 <!--page 390 -->
 
 <h5><a name="7.24.4.2.4" href="#7.24.4.2.4">7.24.4.2.4 The wmemmove function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         wchar_t *wmemmove(wchar_t *s1, const wchar_t *s2,
              size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wmemmove function copies n wide characters from the object pointed to by s2 to
  the object pointed to by s1. Copying takes place as if the n wide characters from the
  object pointed to by s2 are first copied into a temporary array of n wide characters that
  does not overlap the objects pointed to by s1 or s2, and then the n wide characters from
  the temporary array are copied into the object pointed to by s1.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wmemmove function returns the value of s1.
 
 <h5><a name="7.24.4.3" href="#7.24.4.3">7.24.4.3 Wide string concatenation functions</a></h5>
 
 <h5><a name="7.24.4.3.1" href="#7.24.4.3.1">7.24.4.3.1 The wcscat function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         wchar_t *wcscat(wchar_t * restrict s1,
              const wchar_t * restrict s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcscat function appends a copy of the wide string pointed to by s2 (including the
  terminating null wide character) to the end of the wide string pointed to by s1. The initial
  wide character of s2 overwrites the null wide character at the end of s1.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcscat function returns the value of s1.
 
 <h5><a name="7.24.4.3.2" href="#7.24.4.3.2">7.24.4.3.2 The wcsncat function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
@@ -18768,7 +18768,7 @@ If a length modifier appears with any conversion specifier other than as specifi
              const wchar_t * restrict s2,
              size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcsncat function appends not more than n wide characters (a null wide character
  and those that follow it are not appended) from the array pointed to by s2 to the end of
@@ -18776,11 +18776,11 @@ If a length modifier appears with any conversion specifier other than as specifi
  the wide string pointed to by s1. The initial wide character of s2 overwrites the null
  wide character at the end of s1. A terminating null wide character is always appended to
  the result.<sup><a href="#note298"><b>298)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcsncat function returns the value of s1.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note298" href="#note298">298)</a> Thus, the maximum number of wide characters that can end up in the array pointed to by s1 is
  wcslen(s1)+n+1.
 </small>
@@ -18792,35 +18792,35 @@ If a length modifier appears with any conversion specifier other than as specifi
  by wchar_t.
 
 <h5><a name="7.24.4.4.1" href="#7.24.4.4.1">7.24.4.4.1 The wcscmp function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.24">&lt;wchar.h&gt;</a>
          int wcscmp(const wchar_t *s1, const wchar_t *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcscmp function compares the wide string pointed to by s1 to the wide string
  pointed to by s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcscmp function returns an integer greater than, equal to, or less than zero,
  accordingly as the wide string pointed to by s1 is greater than, equal to, or less than the
  wide string pointed to by s2.
 
 <h5><a name="7.24.4.4.2" href="#7.24.4.4.2">7.24.4.4.2 The wcscoll function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.24">&lt;wchar.h&gt;</a>
          int wcscoll(const wchar_t *s1, const wchar_t *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcscoll function compares the wide string pointed to by s1 to the wide string
  pointed to by s2, both interpreted as appropriate to the LC_COLLATE category of the
  current locale.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcscoll function returns an integer greater than, equal to, or less than zero,
  accordingly as the wide string pointed to by s1 is greater than, equal to, or less than the
@@ -18831,26 +18831,26 @@ If a length modifier appears with any conversion specifier other than as specifi
  locale.
 
 <h5><a name="7.24.4.4.3" href="#7.24.4.4.3">7.24.4.4.3 The wcsncmp function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         int wcsncmp(const wchar_t *s1, const wchar_t *s2,
              size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcsncmp function compares not more than n wide characters (those that follow a
  null wide character are not compared) from the array pointed to by s1 to the array
  pointed to by s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcsncmp function returns an integer greater than, equal to, or less than zero,
  accordingly as the possibly null-terminated array pointed to by s1 is greater than, equal
  to, or less than the possibly null-terminated array pointed to by s2.
 
 <h5><a name="7.24.4.4.4" href="#7.24.4.4.4">7.24.4.4.4 The wcsxfrm function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
@@ -18858,7 +18858,7 @@ If a length modifier appears with any conversion specifier other than as specifi
              const wchar_t * restrict s2,
              size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcsxfrm function transforms the wide string pointed to by s2 and places the
  resulting wide string into the array pointed to by s1. The transformation is such that if
@@ -18867,7 +18867,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  applied to the same two original wide strings. No more than n wide characters are placed
  into the resulting array pointed to by s1, including the terminating null wide character. If
  n is zero, s1 is permitted to be a null pointer.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcsxfrm function returns the length of the transformed wide string (not including
  the terminating null wide character). If the value returned is n or greater, the contents of
@@ -18882,18 +18882,18 @@ If a length modifier appears with any conversion specifier other than as specifi
  
 
 <h5><a name="7.24.4.4.5" href="#7.24.4.4.5">7.24.4.4.5 The wmemcmp function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         int wmemcmp(const wchar_t *s1, const wchar_t *s2,
              size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wmemcmp function compares the first n wide characters of the object pointed to by
  s1 to the first n wide characters of the object pointed to by s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wmemcmp function returns an integer greater than, equal to, or less than zero,
  accordingly as the object pointed to by s1 is greater than, equal to, or less than the object
@@ -18902,107 +18902,107 @@ If a length modifier appears with any conversion specifier other than as specifi
 <h5><a name="7.24.4.5" href="#7.24.4.5">7.24.4.5 Wide string search functions</a></h5>
 
 <h5><a name="7.24.4.5.1" href="#7.24.4.5.1">7.24.4.5.1 The wcschr function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         wchar_t *wcschr(const wchar_t *s, wchar_t c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcschr function locates the first occurrence of c in the wide string pointed to by s.
  The terminating null wide character is considered to be part of the wide string.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcschr function returns a pointer to the located wide character, or a null pointer if
  the wide character does not occur in the wide string.
 
 <h5><a name="7.24.4.5.2" href="#7.24.4.5.2">7.24.4.5.2 The wcscspn function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         size_t wcscspn(const wchar_t *s1, const wchar_t *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcscspn function computes the length of the maximum initial segment of the wide
  string pointed to by s1 which consists entirely of wide characters not from the wide
  string pointed to by s2.
 <!--page 394 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcscspn function returns the length of the segment.
 
 <h5><a name="7.24.4.5.3" href="#7.24.4.5.3">7.24.4.5.3 The wcspbrk function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         wchar_t *wcspbrk(const wchar_t *s1, const wchar_t *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcspbrk function locates the first occurrence in the wide string pointed to by s1 of
  any wide character from the wide string pointed to by s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcspbrk function returns a pointer to the wide character in s1, or a null pointer if
  no wide character from s2 occurs in s1.
 
 <h5><a name="7.24.4.5.4" href="#7.24.4.5.4">7.24.4.5.4 The wcsrchr function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         wchar_t *wcsrchr(const wchar_t *s, wchar_t c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcsrchr function locates the last occurrence of c in the wide string pointed to by
  s. The terminating null wide character is considered to be part of the wide string.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcsrchr function returns a pointer to the wide character, or a null pointer if c does
  not occur in the wide string.
 
 <h5><a name="7.24.4.5.5" href="#7.24.4.5.5">7.24.4.5.5 The wcsspn function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         size_t wcsspn(const wchar_t *s1, const wchar_t *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcsspn function computes the length of the maximum initial segment of the wide
  string pointed to by s1 which consists entirely of wide characters from the wide string
  pointed to by s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcsspn function returns the length of the segment.
 <!--page 395 -->
 
 <h5><a name="7.24.4.5.6" href="#7.24.4.5.6">7.24.4.5.6 The wcsstr function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         wchar_t *wcsstr(const wchar_t *s1, const wchar_t *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcsstr function locates the first occurrence in the wide string pointed to by s1 of
  the sequence of wide characters (excluding the terminating null wide character) in the
  wide string pointed to by s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcsstr function returns a pointer to the located wide string, or a null pointer if the
  wide string is not found. If s2 points to a wide string with zero length, the function
  returns s1.
 
 <h5><a name="7.24.4.5.7" href="#7.24.4.5.7">7.24.4.5.7 The wcstok function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
@@ -19010,7 +19010,7 @@ If a length modifier appears with any conversion specifier other than as specifi
              const wchar_t * restrict s2,
              wchar_t ** restrict ptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  A sequence of calls to the wcstok function breaks the wide string pointed to by s1 into
  a sequence of tokens, each of which is delimited by a wide character from the wide string
@@ -19041,7 +19041,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  by ptr so that subsequent calls, with a null pointer for s1 and the unmodified pointer
  value for ptr, shall start searching just past the element overwritten by a null wide
  character (if any).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 7 -->
  The wcstok function returns a pointer to the first wide character of a token, or a null
  pointer if there is no token.
@@ -19061,18 +19061,18 @@ If a length modifier appears with any conversion specifier other than as specifi
  
 
 <h5><a name="7.24.4.5.8" href="#7.24.4.5.8">7.24.4.5.8 The wmemchr function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         wchar_t *wmemchr(const wchar_t *s, wchar_t c,
              size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wmemchr function locates the first occurrence of c in the initial n wide characters of
  the object pointed to by s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wmemchr function returns a pointer to the located wide character, or a null pointer if
  the wide character does not occur in the object.
@@ -19081,39 +19081,39 @@ If a length modifier appears with any conversion specifier other than as specifi
 <h5><a name="7.24.4.6" href="#7.24.4.6">7.24.4.6 Miscellaneous functions</a></h5>
 
 <h5><a name="7.24.4.6.1" href="#7.24.4.6.1">7.24.4.6.1 The wcslen function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         size_t wcslen(const wchar_t *s);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcslen function computes the length of the wide string pointed to by s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcslen function returns the number of wide characters that precede the terminating
  null wide character.
 
 <h5><a name="7.24.4.6.2" href="#7.24.4.6.2">7.24.4.6.2 The wmemset function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         wchar_t *wmemset(wchar_t *s, wchar_t c, size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wmemset function copies the value of c into each of the first n wide characters of
  the object pointed to by s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wmemset function returns the value of s.
 
 <h4><a name="7.24.5" href="#7.24.5">7.24.5 Wide character time conversion functions</a></h4>
 
 <h5><a name="7.24.5.1" href="#7.24.5.1">7.24.5.1 The wcsftime function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.23">&lt;time.h&gt;</a>
@@ -19123,7 +19123,7 @@ If a length modifier appears with any conversion specifier other than as specifi
              const wchar_t * restrict format,
              const struct tm * restrict timeptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcsftime function is equivalent to the strftime function, except that:
 <ul>
@@ -19135,7 +19135,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  corresponding sequences of wide characters.
 <li>  The return value indicates the number of wide characters.
 </ul>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If the total number of resulting wide characters including the terminating null wide
  character is not more than maxsize, the wcsftime function returns the number of
@@ -19174,7 +19174,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  
 <!--page 399 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note299" href="#note299">299)</a> Thus, a particular mbstate_t object can be used, for example, with both the mbrtowc and
  mbsrtowcs functions as long as they are used to step sequentially through the same multibyte
  character string.
@@ -19183,37 +19183,37 @@ If a length modifier appears with any conversion specifier other than as specifi
 <h5><a name="7.24.6.1" href="#7.24.6.1">7.24.6.1 Single-byte/wide character conversion functions</a></h5>
 
 <h5><a name="7.24.6.1.1" href="#7.24.6.1.1">7.24.6.1.1 The btowc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         wint_t btowc(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The btowc function determines whether c constitutes a valid single-byte character in the
  initial shift state.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The btowc function returns WEOF if c has the value EOF or if (unsigned char)c
  does not constitute a valid single-byte character in the initial shift state. Otherwise, it
  returns the wide character representation of that character.
 
 <h5><a name="7.24.6.1.2" href="#7.24.6.1.2">7.24.6.1.2 The wctob function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.19">&lt;stdio.h&gt;</a>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         int wctob(wint_t c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wctob function determines whether c corresponds to a member of the extended
  character set whose multibyte character representation is a single byte when in the initial
  shift state.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wctob function returns EOF if c does not correspond to a multibyte character with
  length one in the initial shift state. Otherwise, it returns the single-byte representation of
@@ -19222,18 +19222,18 @@ If a length modifier appears with any conversion specifier other than as specifi
 <h5><a name="7.24.6.2" href="#7.24.6.2">7.24.6.2 Conversion state functions</a></h5>
 
 <h5><a name="7.24.6.2.1" href="#7.24.6.2.1">7.24.6.2.1 The mbsinit function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
         int mbsinit(const mbstate_t *ps);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If ps is not a null pointer, the mbsinit function determines whether the pointed-to
  mbstate_t object describes an initial conversion state.
 <!--page 400 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The mbsinit function returns nonzero if ps is a null pointer or if the pointed-to object
  describes an initial conversion state; otherwise, it returns zero.
@@ -19252,7 +19252,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  encoding is state-dependent.
 
 <h5><a name="7.24.6.3.1" href="#7.24.6.3.1">7.24.6.3.1 The mbrlen function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.24">&lt;wchar.h&gt;</a>
@@ -19260,7 +19260,7 @@ If a length modifier appears with any conversion specifier other than as specifi
              size_t n,
              mbstate_t * restrict ps);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The mbrlen function is equivalent to the call:
 <pre>
@@ -19268,7 +19268,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 </pre>
  where internal is the mbstate_t object for the mbrlen function, except that the
  expression designated by ps is evaluated only once.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The mbrlen function returns a value between zero and n, inclusive, (size_t)(-2),
  or (size_t)(-1).
@@ -19276,7 +19276,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <!--page 401 -->
 
 <h5><a name="7.24.6.3.2" href="#7.24.6.3.2">7.24.6.3.2 The mbrtowc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.24">&lt;wchar.h&gt;</a>
@@ -19285,7 +19285,7 @@ If a length modifier appears with any conversion specifier other than as specifi
               size_t n,
               mbstate_t * restrict ps);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If s is a null pointer, the mbrtowc function is equivalent to the call:
 <pre>
@@ -19300,7 +19300,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  corresponding wide character and then, if pwc is not a null pointer, stores that value in
  the object pointed to by pwc. If the corresponding wide character is the null wide
  character, the resulting state described is the initial conversion state.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The mbrtowc function returns the first of the following that applies (given the current
  conversion state):
@@ -19320,13 +19320,13 @@ If a length modifier appears with any conversion specifier other than as specifi
 </dl>
 <!--page 402 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note300" href="#note300">300)</a> When n has at least the value of the MB_CUR_MAX macro, this case can only occur if s points at a
  sequence of redundant shift sequences (for implementations with state-dependent encodings).
 </small>
 
 <h5><a name="7.24.6.3.3" href="#7.24.6.3.3">7.24.6.3.3 The wcrtomb function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.24">&lt;wchar.h&gt;</a>
@@ -19334,7 +19334,7 @@ If a length modifier appears with any conversion specifier other than as specifi
               wchar_t wc,
               mbstate_t * restrict ps);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If s is a null pointer, the wcrtomb function is equivalent to the call
 <pre>
@@ -19348,7 +19348,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  array whose first element is pointed to by s. At most MB_CUR_MAX bytes are stored. If
  wc is a null wide character, a null byte is stored, preceded by any shift sequence needed
  to restore the initial shift state; the resulting state described is the initial conversion state.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The wcrtomb function returns the number of bytes stored in the array object (including
  any shift sequences). When wc is not a valid wide character, an encoding error occurs:
@@ -19372,7 +19372,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <!--page 403 -->
 
 <h5><a name="7.24.6.4.1" href="#7.24.6.4.1">7.24.6.4.1 The mbsrtowcs function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.24">&lt;wchar.h&gt;</a>
@@ -19381,7 +19381,7 @@ If a length modifier appears with any conversion specifier other than as specifi
                size_t len,
                mbstate_t * restrict ps);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The mbsrtowcs function converts a sequence of multibyte characters that begins in the
  conversion state described by the object pointed to by ps, from the array indirectly
@@ -19398,7 +19398,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  just past the last multibyte character converted (if any). If conversion stopped due to
  reaching a terminating null character and if dst is not a null pointer, the resulting state
  described is the initial conversion state.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  If the input conversion encounters a sequence of bytes that do not form a valid multibyte
  character, an encoding error occurs: the mbsrtowcs function stores the value of the
@@ -19411,12 +19411,12 @@ If a length modifier appears with any conversion specifier other than as specifi
  
 <!--page 404 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note301" href="#note301">301)</a> Thus, the value of len is ignored if dst is a null pointer.
 </small>
 
 <h5><a name="7.24.6.4.2" href="#7.24.6.4.2">7.24.6.4.2 The wcsrtombs function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.24">&lt;wchar.h&gt;</a>
@@ -19425,7 +19425,7 @@ If a length modifier appears with any conversion specifier other than as specifi
               size_t len,
               mbstate_t * restrict ps);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcsrtombs function converts a sequence of wide characters from the array
  indirectly pointed to by src into a sequence of corresponding multibyte characters that
@@ -19443,7 +19443,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  address just past the last wide character converted (if any). If conversion stopped due to
  reaching a terminating null wide character, the resulting state described is the initial
  conversion state.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  If conversion stops because a wide character is reached that does not correspond to a
  valid multibyte character, an encoding error occurs: the wcsrtombs function stores the
@@ -19456,7 +19456,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  
 <!--page 405 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note302" href="#note302">302)</a> If conversion stops because a terminating null wide character has been reached, the bytes stored
  include those necessary to reach the initial shift state immediately before the null byte.
 </small>
@@ -19505,7 +19505,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  
 <!--page 406 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note303" href="#note303">303)</a> See ''future library directions'' (<a href="#7.26.13">7.26.13</a>).
 </small>
 
@@ -19531,7 +19531,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  both printing and white-space wide characters.<sup><a href="#note304"><b>304)</b></a></sup>
 <p><b> Forward references</b>: the wctob function (<a href="#7.24.6.1.2">7.24.6.1.2</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note304" href="#note304">304)</a> For example, if the expression isalpha(wctob(wc)) evaluates to true, then the call
  iswalpha(wc) also returns true. But, if the expression isgraph(wctob(wc)) evaluates to true
  (which cannot occur for wc == L' ' of course), then either iswgraph(wc) or iswprint(wc)
@@ -19539,25 +19539,25 @@ If a length modifier appears with any conversion specifier other than as specifi
 </small>
 
 <h5><a name="7.25.2.1.1" href="#7.25.2.1.1">7.25.2.1.1 The iswalnum function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.25">&lt;wctype.h&gt;</a>
         int iswalnum(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswalnum function tests for any wide character for which iswalpha or
  iswdigit is true.
 
 <h5><a name="7.25.2.1.2" href="#7.25.2.1.2">7.25.2.1.2 The iswalpha function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.25">&lt;wctype.h&gt;</a>
         int iswalpha(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswalpha function tests for any wide character for which iswupper or
  iswlower is true, or any wide character that is one of a locale-specific set of alphabetic
@@ -19566,19 +19566,19 @@ If a length modifier appears with any conversion specifier other than as specifi
  wide characters for which none of iswcntrl, iswdigit, iswpunct, or iswspace
  is true.<sup><a href="#note305"><b>305)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note305" href="#note305">305)</a> The functions iswlower and iswupper test true or false separately for each of these additional
  wide characters; all four combinations are possible.
 </small>
 
 <h5><a name="7.25.2.1.3" href="#7.25.2.1.3">7.25.2.1.3 The iswblank function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;wctype.h&gt;</a>
          int iswblank(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswblank function tests for any wide character that is a standard blank wide
  character or is one of a locale-specific set of wide characters for which iswspace is true
@@ -19587,30 +19587,30 @@ If a length modifier appears with any conversion specifier other than as specifi
  locale, iswblank returns true only for the standard blank characters.
 
 <h5><a name="7.25.2.1.4" href="#7.25.2.1.4">7.25.2.1.4 The iswcntrl function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;wctype.h&gt;</a>
          int iswcntrl(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswcntrl function tests for any control wide character.
 
 <h5><a name="7.25.2.1.5" href="#7.25.2.1.5">7.25.2.1.5 The iswdigit function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;wctype.h&gt;</a>
          int iswdigit(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswdigit function tests for any wide character that corresponds to a decimal-digit
  character (as defined in <a href="#5.2.1">5.2.1</a>).
 
 <h5><a name="7.25.2.1.6" href="#7.25.2.1.6">7.25.2.1.6 The iswgraph function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;wctype.h&gt;</a>
@@ -19621,56 +19621,56 @@ If a length modifier appears with any conversion specifier other than as specifi
  
  
 <!--page 408 -->
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswgraph function tests for any wide character for which iswprint is true and
  iswspace is false.<sup><a href="#note306"><b>306)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note306" href="#note306">306)</a> Note that the behavior of the iswgraph and iswpunct functions may differ from their
  corresponding functions in <a href="#7.4.1">7.4.1</a> with respect to printing, white-space, single-byte execution
  characters other than ' '.
 </small>
 
 <h5><a name="7.25.2.1.7" href="#7.25.2.1.7">7.25.2.1.7 The iswlower function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;wctype.h&gt;</a>
          int iswlower(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswlower function tests for any wide character that corresponds to a lowercase
  letter or is one of a locale-specific set of wide characters for which none of iswcntrl,
  iswdigit, iswpunct, or iswspace is true.
 
 <h5><a name="7.25.2.1.8" href="#7.25.2.1.8">7.25.2.1.8 The iswprint function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;wctype.h&gt;</a>
          int iswprint(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswprint function tests for any printing wide character.
 
 <h5><a name="7.25.2.1.9" href="#7.25.2.1.9">7.25.2.1.9 The iswpunct function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;wctype.h&gt;</a>
          int iswpunct(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswpunct function tests for any printing wide character that is one of a locale-
  specific set of punctuation wide characters for which neither iswspace nor iswalnum
  is true.<sup><a href="#note306"><b>306)</b></a></sup>
 
 <h5><a name="7.25.2.1.10" href="#7.25.2.1.10">7.25.2.1.10 The iswspace function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;wctype.h&gt;</a>
@@ -19680,33 +19680,33 @@ If a length modifier appears with any conversion specifier other than as specifi
  
  
 <!--page 409 -->
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswspace function tests for any wide character that corresponds to a locale-specific
  set of white-space wide characters for which none of iswalnum, iswgraph, or
  iswpunct is true.
 
 <h5><a name="7.25.2.1.11" href="#7.25.2.1.11">7.25.2.1.11 The iswupper function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.25">&lt;wctype.h&gt;</a>
         int iswupper(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswupper function tests for any wide character that corresponds to an uppercase
  letter or is one of a locale-specific set of wide characters for which none of iswcntrl,
  iswdigit, iswpunct, or iswspace is true.
 
 <h5><a name="7.25.2.1.12" href="#7.25.2.1.12">7.25.2.1.12 The iswxdigit function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.25">&lt;wctype.h&gt;</a>
         int iswxdigit(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswxdigit function tests for any wide character that corresponds to a
  hexadecimal-digit character (as defined in <a href="#6.4.4.1">6.4.4.1</a>).
@@ -19718,13 +19718,13 @@ If a length modifier appears with any conversion specifier other than as specifi
  subclause (<a href="#7.25.2.1">7.25.2.1</a>).
 
 <h5><a name="7.25.2.2.1" href="#7.25.2.2.1">7.25.2.2.1 The iswctype function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.25">&lt;wctype.h&gt;</a>
         int iswctype(wint_t wc, wctype_t desc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswctype function determines whether the wide character wc has the property
  described by desc. The current setting of the LC_CTYPE category shall be the same as
@@ -19747,27 +19747,27 @@ If a length modifier appears with any conversion specifier other than as specifi
         iswctype(wc,       wctype("upper"))             //   iswupper(wc)
         iswctype(wc,       wctype("xdigit"))            //   iswxdigit(wc)
 </pre>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The iswctype function returns nonzero (true) if and only if the value of the wide
  character wc has the property described by desc.
 <p><b> Forward references</b>: the wctype function (<a href="#7.25.2.2.2">7.25.2.2.2</a>).
 
 <h5><a name="7.25.2.2.2" href="#7.25.2.2.2">7.25.2.2.2 The wctype function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.25">&lt;wctype.h&gt;</a>
         wctype_t wctype(const char *property);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wctype function constructs a value with type wctype_t that describes a class of
  wide characters identified by the string argument property.
 <p><!--para 3 -->
  The strings listed in the description of the iswctype function shall be valid in all
  locales as property arguments to the wctype function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  If property identifies a valid class of wide characters according to the LC_CTYPE
  category of the current locale, the wctype function returns a nonzero value that is valid
@@ -19781,16 +19781,16 @@ If a length modifier appears with any conversion specifier other than as specifi
 <h5><a name="7.25.3.1" href="#7.25.3.1">7.25.3.1 Wide character case mapping functions</a></h5>
 
 <h5><a name="7.25.3.1.1" href="#7.25.3.1.1">7.25.3.1.1 The towlower function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.25">&lt;wctype.h&gt;</a>
         wint_t towlower(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The towlower function converts an uppercase letter to a corresponding lowercase letter.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If the argument is a wide character for which iswupper is true and there are one or
  more corresponding wide characters, as specified by the current locale, for which
@@ -19799,16 +19799,16 @@ If a length modifier appears with any conversion specifier other than as specifi
  returned unchanged.
 
 <h5><a name="7.25.3.1.2" href="#7.25.3.1.2">7.25.3.1.2 The towupper function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.25">&lt;wctype.h&gt;</a>
         wint_t towupper(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The towupper function converts a lowercase letter to a corresponding uppercase letter.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If the argument is a wide character for which iswlower is true and there are one or
  more corresponding wide characters, as specified by the current locale, for which
@@ -19824,13 +19824,13 @@ If a length modifier appears with any conversion specifier other than as specifi
 <!--page 412 -->
 
 <h5><a name="7.25.3.2.1" href="#7.25.3.2.1">7.25.3.2.1 The towctrans function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.25">&lt;wctype.h&gt;</a>
         wint_t towctrans(wint_t wc, wctrans_t desc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The towctrans function maps the wide character wc using the mapping described by
  desc. The current setting of the LC_CTYPE category shall be the same as during the call
@@ -19842,26 +19842,26 @@ If a length modifier appears with any conversion specifier other than as specifi
         towctrans(wc, wctrans("tolower"))                      // towlower(wc)
         towctrans(wc, wctrans("toupper"))                      // towupper(wc)
 </pre>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The towctrans function returns the mapped value of wc using the mapping described
  by desc.
 
 <h5><a name="7.25.3.2.2" href="#7.25.3.2.2">7.25.3.2.2 The wctrans function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.25">&lt;wctype.h&gt;</a>
         wctrans_t wctrans(const char *property);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wctrans function constructs a value with type wctrans_t that describes a
  mapping between wide characters identified by the string argument property.
 <p><!--para 3 -->
  The strings listed in the description of the towctrans function shall be valid in all
  locales as property arguments to the wctrans function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  If property identifies a valid mapping of wide characters according to the LC_CTYPE
  category of the current locale, the wctrans function returns a nonzero value that is valid
@@ -21847,7 +21847,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 </ul>
  Any non-IEC 60559 extended format used for the long double type shall have more
  precision than IEC 60559 double and at least the range of IEC 60559 double.<sup><a href="#note308"><b>308)</b></a></sup>
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 2 -->
  The long double type should match an IEC 60559 extended format.
  
@@ -21856,7 +21856,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  
 <!--page 457 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note307" href="#note307">307)</a> ''Extended'' is IEC 60559's double-extended data format. Extended refers to both the common 80-bit
  and quadruple 128-bit IEC 60559 formats.
 </small>
@@ -21870,7 +21870,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  the term NaN to denote quiet NaNs. The NAN and INFINITY macros and the nan
  functions in <a href="#7.12">&lt;math.h&gt;</a> provide designations for IEC 60559 NaNs and infinities.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note309" href="#note309">309)</a> Since NaNs created by IEC 60559 operations are always quiet, quiet NaNs (along with infinities) are
  sufficient for closure of the arithmetic.
 </small>
@@ -21961,7 +21961,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  integral part is within the range of the integer type raises the ''inexact'' floating-point
  exception is unspecified.<sup><a href="#note310"><b>310)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note310" href="#note310">310)</a> ANSI/IEEE 854, but not IEC 60559 (ANSI/IEEE 754), directly specifies that floating-to-integer
  conversions raise the ''inexact'' floating-point exception for non-integer in-range values. In those
  cases where it matters, library functions can be used to effect such conversions with or without raising
@@ -21990,7 +21990,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  
 <!--page 460 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note311" href="#note311">311)</a> If the minimum-width IEC 60559 extended format (64 bits of precision) is supported,
  DECIMAL_DIG shall be at least 21. If IEC 60559 double (53 bits of precision) is the widest
  IEC 60559 format supported, then DECIMAL_DIG shall be at least 17. (By contrast, LDBL_DIG and
@@ -22002,7 +22002,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  A contracted expression treats infinities, NaNs, signed zeros, subnormals, and the
  rounding directions in a manner consistent with the basic arithmetic operations covered
  by IEC 60559.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 2 -->
  A contracted expression should raise floating-point exceptions in a manner generally
  consistent with the basic arithmetic operations. A contracted expression should deliver
@@ -22015,7 +22015,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  IEC 60559 dynamic rounding precision and trap enablement modes, if the
  implementation supports them.<sup><a href="#note312"><b>312)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note312" href="#note312">312)</a> This specification does not require dynamic rounding precision nor trap enablement modes.
 </small>
 
@@ -22027,7 +22027,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  <a href="#7.6">&lt;fenv.h&gt;</a>) is ''on'', these changes to the floating-point state are treated as side effects
  which respect sequence points.<sup><a href="#note313"><b>313)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note313" href="#note313">313)</a> If the state for the FENV_ACCESS pragma is ''off'', the implementation is free to assume the floating-
  point control modes will be the default ones and the floating-point status flags will not be tested,
  which allows certain optimizations (see <a href="#F.8">F.8</a>).
@@ -22041,7 +22041,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <li>  The rounding precision mode (if supported) is set so that results are not shortened.
 <li>  Trapping or stopping (if supported) is disabled on all floating-point exceptions.
 </ul>
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 2 -->
  The implementation should produce a diagnostic message for each translation-time
  
@@ -22052,7 +22052,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  floating-point exception, other than ''inexact'';<sup><a href="#note314"><b>314)</b></a></sup> the implementation should then
  proceed with the translation of the program.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note314" href="#note314">314)</a> As floating constants are converted to appropriate internal representations at translation time, their
  conversion is subject to default rounding modes and raises no execution-time floating-point exceptions
  (even where the state of the FENV_ACCESS pragma is ''on''). Library functions, for example
@@ -22101,7 +22101,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  execution time.
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note315" href="#note315">315)</a> Where the state for the FENV_ACCESS pragma is ''on'', results of inexact expressions like 1.0/3.0
  are affected by rounding modes set at execution time, and expressions such as 0.0/0.0 and
  1.0/0.0 generate execution-time floating-point exceptions. The programmer can achieve the
@@ -22150,7 +22150,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  
 <!--page 463 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note316" href="#note316">316)</a> Use of float_t and double_t variables increases the likelihood of translation-time computation.
  For example, the automatic initialization
 
@@ -22270,7 +22270,7 @@ If a length modifier appears with any conversion specifier other than as specifi
                                           (unless rounding is downward).
 </pre>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note317" href="#note317">317)</a> Strict support for signaling NaNs -- not required by this specification -- would invalidate these and
  other transformations that remove arithmetic operators.
 </small>
@@ -22358,7 +22358,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  precision modes shall assure further that the result of the operation raises no floating-
  point exception when converted to the semantic type of the operation.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note319" href="#note319">319)</a> 0 - 0 yields -0 instead of +0 just when the rounding direction is downward.
 </small>
 
@@ -22411,13 +22411,13 @@ If a length modifier appears with any conversion specifier other than as specifi
  For families of functions, the specifications apply to all of the functions even though only
  the principal function is shown. Unless otherwise specified, where the symbol ''(+-)''
  occurs in both an argument and the result, the result has the same sign as the argument.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 13 -->
  If a function with one or more NaN arguments returns a NaN result, the result should be
  the same as one of the NaN arguments (after possible type conversion), except perhaps
  for the sign.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note320" href="#note320">320)</a> IEC 60559 allows different definitions of underflow. They all result in the same values, but differ on
  when the floating-point exception is raised.
 </small>
@@ -22471,7 +22471,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <li>  atan2((+-)(inf), +(inf)) returns (+-)pi /4.
 </ul>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note322" href="#note322">322)</a> atan2(0, 0) does not raise the ''invalid'' floating-point exception, nor does atan2( y ,    0) raise
  the ''divide-by-zero'' floating-point exception.
 </small>
@@ -22960,7 +22960,7 @@ If a length modifier appears with any conversion specifier other than as specifi
              isnan(y)) ? x : y; }
 </pre>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note323" href="#note323">323)</a> Ideally, fmax would be sensitive to the sign of zero, for example fmax(-0.0, +0.0) would
  return +0; however, implementation in software might be impractical.
 </small>
@@ -23045,7 +23045,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  When a value of real type is converted to an imaginary type, the result is a positive
  imaginary zero.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note324" href="#note324">324)</a> See <a href="#6.3.1.2">6.3.1.2</a>.
 </small>
 
@@ -23077,7 +23077,7 @@ If a length modifier appears with any conversion specifier other than as specifi
 <!--page 481 -->
 
 <h4><a name="G.5.1" href="#G.5.1">G.5.1 Multiplicative operators</a></h4>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 1 -->
  If one operand has real type and the other operand has imaginary type, then the result has
  imaginary type. If both operands have imaginary type, then the result has real type. (If
@@ -23252,13 +23252,13 @@ If a length modifier appears with any conversion specifier other than as specifi
  with division, provides better roundoff characteristics.
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note325" href="#note325">325)</a> These properties are already implied for those cases covered in the tables, but are required for all cases
  (at least where the state for CX_LIMITED_RANGE is ''off'').
 </small>
 
 <h4><a name="G.5.2" href="#G.5.2">G.5.2 Additive operators</a></h4>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 1 -->
  If both operands have imaginary type, then the result has imaginary type. (If one operand
  has real type and the other operand has imaginary type, or if either operand has complex
@@ -23352,7 +23352,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  
 <!--page 486 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note326" href="#note326">326)</a> As noted in <a href="#G.3">G.3</a>, a complex value with at least one infinite part is regarded as an infinity even if its
  other part is a NaN.
 </small>
@@ -23573,7 +23573,7 @@ If a length modifier appears with any conversion specifier other than as specifi
  The cpow functions raise floating-point exceptions if appropriate for the calculation of
  the parts of the result, and may raise spurious exceptions.<sup><a href="#note327"><b>327)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note327" href="#note327">327)</a> This allows cpow( z , c ) to be implemented as cexp(c      clog( z )) without precluding
  implementations that treat special cases more carefully.
 </small>
index 3c52ef1..ff9b0a9 100644 (file)
@@ -762,7 +762,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 20 -->
 </ul>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note1" href="#note1">1)</a> This International Standard is designed to promote the portability of C programs among a variety of
  data-processing systems. It is intended for use by implementors and programmers.
 </small>
@@ -1078,7 +1078,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  ''representation'', this is the intended usage.<sup><a href="#note2"><b>2)</b></a></sup>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note2" href="#note2">2)</a> For example, ''Trapping or stopping (if supported) is disabled...'' (<a href="#F.8.2">F.8.2</a>). Note that fetching a trap
  representation might perform a trap but is not required to (see <a href="#6.2.6.1">6.2.6.1</a>).
 </small>
@@ -1156,7 +1156,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 28 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note3" href="#note3">3)</a> A strictly conforming program can use conditional features (see <a href="#6.10.8.3">6.10.8.3</a>) provided the use is guarded
  by an appropriate conditional inclusion preprocessing directive using the related macro. For example:
 
@@ -1257,7 +1257,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 30 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note6" href="#note6">6)</a> Implementations shall behave as if these separate phases occur, even though many are typically folded
  together in practice. Source files, translation units, and translated translation units need not
  necessarily be stored as files, nor need there be any one-to-one correspondence between these entities
@@ -1288,7 +1288,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  as being both a constraint error and resulting in undefined behavior, the constraint error shall be diagnosed.
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note9" href="#note9">9)</a> The intent is that an implementation should identify the nature of, and where possible localize, each
  violation. Of course, an implementation is free to produce any number of diagnostics as long as a
  valid program is still correctly translated. It may also successfully translate an invalid program.
@@ -1361,7 +1361,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  startup and program termination.
 </ul>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note10" href="#note10">10)</a> Thus, int can be replaced by a typedef name defined as int, or the type of argv can be written as
  char ** argv, and so on.
 </small>
@@ -1385,7 +1385,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  termination status returned to the host environment is unspecified.
 <p><b> Forward references</b>: definition of terms (<a href="#7.1.1">7.1.1</a>), the exit function (<a href="#7.22.4.4">7.22.4.4</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note11" href="#note11">11)</a> In accordance with <a href="#6.2.4">6.2.4</a>, the lifetimes of objects with automatic storage duration declared in main
  will have ended in the former case, even where they would not have in the latter.
 </small>
@@ -1566,7 +1566,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: expressions (<a href="#6.5">6.5</a>), type qualifiers (<a href="#6.7.3">6.7.3</a>), statements (<a href="#6.8">6.8</a>), the
  signal function (<a href="#7.14">7.14</a>), files (<a href="#7.21.3">7.21.3</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note12" href="#note12">12)</a> The IEC 60559 standard for binary floating-point arithmetic requires certain user-accessible status
  flags and control modes. Floating-point operations implicitly set the status flags; modes affect result
  values of floating-point operations. Implementations that support such floating-point state are
@@ -1784,7 +1784,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  is not tolerant of races or provides hardware race detection.
 <!--page 40 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note14" href="#note14">14)</a> The execution can usually be viewed as an interleaving of all of the threads. However, some kinds of
  atomic operations, for example, allow executions inconsistent with a simple interleaving as described
  below.
@@ -1887,7 +1887,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note17" href="#note17">17)</a> The trigraph 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.
 </small>
@@ -2023,7 +2023,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <li>  63 levels of nested structure or union definitions in a single struct-declaration-list
 </ul>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note18" href="#note18">18)</a> Implementations should avoid imposing fixed translation limits whenever possible.
 </small>
 <p><small><a name="note19" href="#note19">19)</a> See ''future language directions'' (<a href="#6.11.3">6.11.3</a>).
@@ -2096,7 +2096,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  UCHAR_MAX.<sup><a href="#note20"><b>20)</b></a></sup> The value UCHAR_MAX shall equal 2CHAR_BIT - 1.
 <p><b> Forward references</b>: representations of types (<a href="#6.2.6">6.2.6</a>), conditional inclusion (<a href="#6.10.1">6.10.1</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note20" href="#note20">20)</a> See <a href="#6.2.5">6.2.5</a>.
 </small>
 
@@ -2313,7 +2313,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
    DBL_TRUE_MIN                                       1E-37
    LDBL_TRUE_MIN                                      1E-37
 </ul>
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 14 -->
  Conversion from (at least) double to decimal with DECIMAL_DIG digits and back
  should be the identity function.
@@ -2411,7 +2411,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  (<a href="#7.22">7.22</a>), input/output <a href="#7.21">&lt;stdio.h&gt;</a> (<a href="#7.21">7.21</a>), mathematics <a href="#7.12">&lt;math.h&gt;</a> (<a href="#7.12">7.12</a>).
 <!--page 53 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note21" href="#note21">21)</a> The floating-point model is intended to clarify the description of each floating-point characteristic and
  does not require the floating-point arithmetic of the implementation to be identical.
 </small>
@@ -2556,7 +2556,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: declarations (<a href="#6.7">6.7</a>), expressions (<a href="#6.5">6.5</a>), external definitions (<a href="#6.9">6.9</a>),
  statements (<a href="#6.8">6.8</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note29" href="#note29">29)</a> There is no linkage between different identifiers.
 </small>
 <p><small><a name="note30" href="#note30">30)</a> A function declaration can contain the storage-class specifier static only if it is at file scope; see
@@ -2586,7 +2586,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 56 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note32" href="#note32">32)</a> There is only one name space for tags even though three are possible.
 </small>
 
@@ -2648,7 +2648,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: array declarators (<a href="#6.7.6.2">6.7.6.2</a>), compound literals (<a href="#6.5.2.5">6.5.2.5</a>), declarators
  (<a href="#6.7.6">6.7.6</a>), function calls (<a href="#6.5.2.2">6.5.2.2</a>), initialization (<a href="#6.7.9">6.7.9</a>), statements (<a href="#6.8">6.8</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note33" href="#note33">33)</a> The term ''constant address'' means that two pointers to the object constructed at possibly different
  times will compare equal. The address may be different during two different executions of the same
  program.
@@ -2859,7 +2859,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <p><b> Forward references</b>: compatible type and composite type (<a href="#6.2.7">6.2.7</a>), declarations (<a href="#6.7">6.7</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note37" href="#note37">37)</a> A type may be incomplete or complete throughout an entire translation unit, or it may change states at
  different points within a translation unit.
 </small>
@@ -2950,7 +2950,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: declarations (<a href="#6.7">6.7</a>), expressions (<a href="#6.5">6.5</a>), lvalues, arrays, and function
  designators (<a href="#6.3.2.1">6.3.2.1</a>), order and consistency (<a href="#7.17.3">7.17.3</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note49" href="#note49">49)</a> A positional representation for integers that uses the binary digits 0 and 1, in which the values
  represented by successive bits are additive, begin with 1, and are multiplied by successive integral
  powers of 2, except perhaps the bit with the highest position. (Adapted from the American National
@@ -3033,7 +3033,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 65 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note53" href="#note53">53)</a> Some combinations of padding bits might generate trap representations, for example, if one padding
  bit is a parity bit. Regardless, no arithmetic operation on valid values can generate a trap
  representation other than as part of an exceptional condition such as an overflow, and this cannot occur
@@ -3113,7 +3113,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note55" href="#note55">55)</a> Two types need not be identical to be compatible.
 </small>
 <p><small><a name="note56" href="#note56">56)</a> As specified in <a href="#6.2.1">6.2.1</a>, the later declaration might hide the prior declaration.
@@ -3161,7 +3161,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 68 -->
 </ul>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note57" href="#note57">57)</a> Every over-aligned type is, or contains, a structure or union type with a member to which an extended
  alignment has been applied.
 </small>
@@ -3225,7 +3225,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: enumeration specifiers (<a href="#6.7.2.2">6.7.2.2</a>), structure and union specifiers
  (<a href="#6.7.2.1">6.7.2.1</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note58" href="#note58">58)</a> The integer promotions are applied only: as part of the usual arithmetic conversions, to certain
  argument expressions, to the operands of the unary +, -, and ~ operators, and to both operands of the
  shift operators, as specified by their respective subclauses.
@@ -3236,7 +3236,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  When any scalar value is converted to _Bool, the result is 0 if the value compares equal
  to 0; otherwise, the result is 1.<sup><a href="#note59"><b>59)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note59" href="#note59">59)</a> NaNs do not compare equal to 0 and thus convert to 1.
 </small>
 
@@ -3252,7 +3252,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  Otherwise, the new type is signed and the value cannot be represented in it; either the
  result is implementation-defined or an implementation-defined signal is raised.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note60" href="#note60">60)</a> The rules describe arithmetic on the mathematical value, not the value of a given type of expression.
 </small>
 
@@ -3274,7 +3274,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  conversions (<a href="#6.3.1.8">6.3.1.8</a>, <a href="#6.8.6.4">6.8.6.4</a>) may be represented in greater precision and range than that
  required by the new type.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note61" href="#note61">61)</a> The remaindering operation performed when a value of integer type is converted to unsigned type
  need not be performed when a value of real floating type is converted to unsigned type. Thus, the
  range of portable real floating values is (-1, Utype_MAX+1).
@@ -3353,7 +3353,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 72 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note62" href="#note62">62)</a> For example, addition of a double _Complex and a float entails just the conversion of the
  float operand to double (and yields a double _Complex result).
 </small>
@@ -3404,7 +3404,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  increment and decrement operators (<a href="#6.5.2.4">6.5.2.4</a>), prefix increment and decrement operators
  (<a href="#6.5.3.1">6.5.3.1</a>), the sizeof operator (<a href="#6.5.3.4">6.5.3.4</a>), structure and union members (<a href="#6.5.2.3">6.5.2.3</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note64" href="#note64">64)</a> The name ''lvalue'' comes originally from the assignment expression E1 = E2, in which the left
  operand E1 is required to be a (modifiable) lvalue. It is perhaps better considered as representing an
  object ''locator value''. What is sometimes called ''rvalue'' is in this International Standard described
@@ -3475,7 +3475,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 75 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note66" href="#note66">66)</a> The macro NULL is defined in <a href="#7.19">&lt;stddef.h&gt;</a> (and other headers) as a null pointer constant; see <a href="#7.19">7.19</a>.
 </small>
 <p><small><a name="note67" href="#note67">67)</a> The mapping functions for converting a pointer to an integer or an integer to a pointer are intended to
@@ -3487,7 +3487,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h3><a name="6.4" href="#6.4">6.4 Lexical elements</a></h3>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           token:
@@ -3505,11 +3505,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                  punctuator
                  each non-white-space character that cannot be one of the above
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Each preprocessing token that is converted to a token shall have the lexical form of a
  keyword, an identifier, a constant, a string literal, or a punctuator.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  A token is the minimal lexical element of the language in translation phases 7 and 8. The
  categories of tokens are: keywords, identifiers, constants, string literals, and punctuators.
@@ -3554,13 +3554,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  (<a href="#6.5.3.1">6.5.3.1</a>), preprocessing directives (<a href="#6.10">6.10</a>), preprocessing numbers (<a href="#6.4.8">6.4.8</a>), string literals
  (<a href="#6.4.5">6.4.5</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note69" href="#note69">69)</a> An additional category, placemarkers, is used internally in translation phase 4 (see <a href="#6.10.3.3">6.10.3.3</a>); it cannot
  occur in source files.
 </small>
 
 <h4><a name="6.4.1" href="#6.4.1">6.4.1 Keywords</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           keyword: one of
@@ -3580,21 +3580,21 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                 float                           switch                       _Thread_local
                 for                             typedef
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  The above tokens (case sensitive) are reserved (in translation phases 7 and 8) for use as
  keywords, and shall not be used otherwise. The keyword _Imaginary is reserved for
 <!--page 77 -->
  specifying imaginary types.<sup><a href="#note70"><b>70)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note70" href="#note70">70)</a> One possible specification for imaginary types appears in <a href="#G">annex G</a>.
 </small>
 
 <h4><a name="6.4.2" href="#6.4.2">6.4.2 Identifiers</a></h4>
 
 <h5><a name="6.4.2.1" href="#6.4.2.1">6.4.2.1 General</a></h5>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           identifier:
@@ -3613,7 +3613,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
           digit: one of
                  0 1        2     3    4    5    6     7    8    9
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  An identifier is a sequence of nondigit characters (including the underscore _, the
  lowercase and uppercase Latin letters, and other characters) and digits, which designates
@@ -3634,7 +3634,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  When preprocessing tokens are converted to tokens during translation phase 7, if a
  preprocessing token could be converted to either a keyword or an identifier, it is converted
  to a keyword.
-<h6>Implementation limits</h6>
+<p><b>Implementation limits</b>
 <p><!--para 5 -->
  As discussed in <a href="#5.2.4.1">5.2.4.1</a>, an implementation may limit the number of significant initial
  characters in an identifier; the limit for an external name (an identifier that has external
@@ -3646,7 +3646,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  identifiers differ only in nonsignificant characters, the behavior is undefined.
 <p><b> Forward references</b>: universal character names (<a href="#6.4.3">6.4.3</a>), macro replacement (<a href="#6.10.3">6.10.3</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note71" href="#note71">71)</a> On systems in which linkers cannot accept extended characters, an encoding of the universal character
  name may be used in forming valid external identifiers. For example, some otherwise unused
  character or sequence of characters may be used to encode the \u in a universal character name.
@@ -3654,7 +3654,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="6.4.2.2" href="#6.4.2.2">6.4.2.2 Predefined identifiers</a></h5>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 1 -->
  The identifier __func__ shall be implicitly declared by the translator as if,
  immediately following the opening brace of each function definition, the declaration
@@ -3688,13 +3688,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 79 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note72" href="#note72">72)</a> Since the name __func__ is reserved for any use by the implementation (<a href="#7.1.3">7.1.3</a>), if any other
  identifier is explicitly declared using the name __func__, the behavior is undefined.
 </small>
 
 <h4><a name="6.4.3" href="#6.4.3">6.4.3 Universal character names</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           universal-character-name:
@@ -3704,16 +3704,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                  hexadecimal-digit hexadecimal-digit
                               hexadecimal-digit hexadecimal-digit
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  A universal character name shall not specify a character whose short identifier is less than
  00A0 other than 0024 ($), 0040 (@), or 0060 ('), nor one in the range D800 through
  DFFF inclusive.<sup><a href="#note73"><b>73)</b></a></sup>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 3 -->
  Universal character names may be used in identifiers, character constants, and string
  literals to designate characters that are not in the basic character set.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  The universal character name \Unnnnnnnn designates the character whose eight-digit
  short identifier (as specified by ISO/IEC 10646) is nnnnnnnn.<sup><a href="#note74"><b>74)</b></a></sup> Similarly, the universal
@@ -3725,7 +3725,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 80 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note73" href="#note73">73)</a> The disallowed characters are the characters in the basic character set and the code positions reserved
  by ISO/IEC 10646 for control characters, the character DELETE, and the S-zone (reserved for use by
  UTF-16).
@@ -3735,7 +3735,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h4><a name="6.4.4" href="#6.4.4">6.4.4 Constants</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           constant:
@@ -3744,16 +3744,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                  enumeration-constant
                  character-constant
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Each constant shall have a type and the value of a constant shall be in the range of
  representable values for its type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  Each constant has a type, determined by its form and value, as detailed later.
 
 <h5><a name="6.4.4.1" href="#6.4.4.1">6.4.4.1 Integer constants</a></h5>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <!--page 81 -->
 <pre>
@@ -3792,7 +3792,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          long-long-suffix: one of
                 ll LL
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  An integer constant begins with a digit, but has no period or exponent part. It may have a
  prefix that specifies its base and a suffix that specifies its type.
@@ -3802,7 +3802,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  digits 0 through 7 only. A hexadecimal constant consists of the prefix 0x or 0X followed
  by a sequence of the decimal digits and the letters a (or A) through f (or F) with values
  10 through 15 respectively.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  The value of a decimal constant is computed base 10; that of an octal constant, base 8;
  that of a hexadecimal constant, base 16. The lexically first digit is the most significant.
@@ -3858,7 +3858,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 83 -->
 
 <h5><a name="6.4.4.2" href="#6.4.4.2">6.4.4.2 Floating constants</a></h5>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <!--page 84 -->
 <pre>
@@ -3897,7 +3897,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
           floating-suffix: one of
                  f l F L
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  A floating constant has a significand part that may be followed by an exponent part and a
  suffix that specifies its type. The components of the significand part may include a digit
@@ -3906,7 +3906,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  e, E, p, or P followed by an exponent consisting of an optionally signed digit sequence.
  Either the whole-number part or the fraction part has to be present; for decimal floating
  constants, either the period or the exponent part has to be present.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The significand part is interpreted as a (decimal or hexadecimal) rational number; the
  digit sequence in the exponent part is interpreted as a decimal integer. For decimal
@@ -3926,7 +3926,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  conversion of a floating constant shall not raise an exceptional condition or a floating-
  point exception at execution time. All floating constants of the same source form<sup><a href="#note75"><b>75)</b></a></sup> shall
  convert to the same internal format with the same value.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 6 -->
  The implementation should produce a diagnostic message if a hexadecimal constant
  cannot be represented exactly in its evaluation format; the implementation should then
@@ -3939,7 +3939,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 85 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note75" href="#note75">75)</a> <a href="#1.23">1.23</a>, 1.230, 123e-2, 123e-02, and 1.23L are all different source forms and thus need not
  convert to the same internal format and value.
 </small>
@@ -3948,19 +3948,19 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="6.4.4.3" href="#6.4.4.3">6.4.4.3 Enumeration constants</a></h5>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           enumeration-constant:
                 identifier
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  An identifier declared as an enumeration constant has type int.
 <p><b> Forward references</b>: enumeration specifiers (<a href="#6.7.2.2">6.7.2.2</a>).
 
 <h5><a name="6.4.4.4" href="#6.4.4.4">6.4.4.4 Character constants</a></h5>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <!--page 86 -->
 <pre>
@@ -3992,7 +3992,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               \x hexadecimal-digit
               hexadecimal-escape-sequence hexadecimal-digit
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  An integer character constant is a sequence of one or more multibyte characters enclosed
  in single-quotes, as in 'x'. A wide character constant is the same, except prefixed by the
@@ -4035,7 +4035,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  consisting of the backslash \ followed by a lowercase letter: \a, \b, \f, \n, \r, \t,
  and \v.<sup><a href="#note77"><b>77)</b></a></sup>
 <!--page 87 -->
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 9 -->
  The value of an octal or hexadecimal escape sequence shall be in the range of
  representable values for the corresponding type:
@@ -4046,7 +4046,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         u          char16_t
         U          char32_t
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 10 -->
  An integer character constant has type int. The value of an integer character constant
  containing a single character that maps to a single-byte execution character is the
@@ -4099,13 +4099,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: common definitions <a href="#7.19">&lt;stddef.h&gt;</a> (<a href="#7.19">7.19</a>), the mbtowc function
  (<a href="#7.22.7.2">7.22.7.2</a>), Unicode utilities <a href="#7.27">&lt;uchar.h&gt;</a> (<a href="#7.27">7.27</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note77" href="#note77">77)</a> The semantics of these characters were discussed in <a href="#5.2.2">5.2.2</a>. If any other character follows a backslash,
  the result is not a token and a diagnostic is required. See ''future language directions'' (<a href="#6.11.4">6.11.4</a>).
 </small>
 
 <h4><a name="6.4.5" href="#6.4.5">6.4.5 String literals</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           string-literal:
@@ -4123,11 +4123,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                                  the double-quote ", backslash \, or new-line character
                     escape-sequence
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  A sequence of adjacent string literal tokens shall not include both a wide string literal and
  a UTF-8 string literal.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 3 -->
  A character string literal is a sequence of zero or more multibyte characters enclosed in
  double-quotes, as in "xyz". A UTF-8 string literal is the same, except prefixed by u8.
@@ -4139,7 +4139,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  representable either by itself or by the escape sequence \', but the double-quote " shall
 <!--page 89 -->
  be represented by the escape sequence \".
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 5 -->
  In translation phase 6, the multibyte character sequences specified by any sequence of
  adjacent character and identically-prefixed string literal tokens are concatenated into a
@@ -4210,13 +4210,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: common definitions <a href="#7.19">&lt;stddef.h&gt;</a> (<a href="#7.19">7.19</a>), the mbstowcs
  function (<a href="#7.22.8.1">7.22.8.1</a>), Unicode utilities <a href="#7.27">&lt;uchar.h&gt;</a> (<a href="#7.27">7.27</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note78" href="#note78">78)</a> A string literal need not be a string (see <a href="#7.1.1">7.1.1</a>), because a null character may be embedded in it by a
  \0 escape sequence.
 </small>
 
 <h4><a name="6.4.6" href="#6.4.6">6.4.6 Punctuators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           punctuator: one of
@@ -4228,7 +4228,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                  , # ##
                  &lt;: :&gt; &lt;% %&gt; %: %:%:
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A punctuator is a symbol that has independent syntactic and semantic significance.
  Depending on context, it may specify an operation to be performed (which in turn may
@@ -4249,7 +4249,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: expressions (<a href="#6.5">6.5</a>), declarations (<a href="#6.7">6.7</a>), preprocessing directives
  (<a href="#6.10">6.10</a>), statements (<a href="#6.8">6.8</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note79" href="#note79">79)</a> These tokens are sometimes called ''digraphs''.
 </small>
 <p><small><a name="note80" href="#note80">80)</a> Thus [ and &lt;: behave differently when ''stringized'' (see <a href="#6.10.3.2">6.10.3.2</a>), but can otherwise be freely
@@ -4257,7 +4257,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h4><a name="6.4.7" href="#6.4.7">6.4.7 Header names</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           header-name:
@@ -4276,7 +4276,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                     any member of the source character set except
                                  the new-line character and "
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  The sequences in both forms of header names are mapped in an implementation-defined
  manner to headers or external source file names as specified in <a href="#6.10.2">6.10.2</a>.
@@ -4308,14 +4308,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <p><b> Forward references</b>: source file inclusion (<a href="#6.10.2">6.10.2</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note81" href="#note81">81)</a> Thus, sequences of characters that resemble escape sequences cause undefined behavior.
 </small>
 <p><small><a name="note82" href="#note82">82)</a> For an example of a header name preprocessing token used in a #pragma directive, see <a href="#6.10.9">6.10.9</a>.
 </small>
 
 <h4><a name="6.4.8" href="#6.4.8">6.4.8 Preprocessing numbers</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           pp-number:
@@ -4329,14 +4329,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                 pp-number       P sign
                 pp-number       .
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  A preprocessing number begins with a digit optionally preceded by a period (.) and may
  be followed by valid identifier characters and the character sequences e+, e-, E+, E-,
  p+, p-, P+, or P-.
 <p><!--para 3 -->
  Preprocessing number tokens lexically include all floating and integer constant tokens.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  A preprocessing number does not have type or a value; it acquires both after a successful
  conversion (as part of translation phase 7) to a floating constant token or an integer
@@ -4378,7 +4378,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 94 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note83" href="#note83">83)</a> Thus, /* ... */ comments do not nest.
 </small>
 
@@ -4446,7 +4446,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 96 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note84" href="#note84">84)</a> This paragraph renders undefined statement expressions such as
 
 <pre>
@@ -4490,7 +4490,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h4><a name="6.5.1" href="#6.5.1">6.5.1 Primary expressions</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           primary-expression:
@@ -4500,7 +4500,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                  ( expression )
                  generic-selection
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  An identifier is a primary expression, provided it has been declared as designating an
  object (in which case it is an lvalue) or a function (in which case it is a function
@@ -4517,12 +4517,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  designator, or a void expression.
 <p><b> Forward references</b>: declarations (<a href="#6.7">6.7</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note91" href="#note91">91)</a> Thus, an undeclared identifier is a violation of the syntax.
 </small>
 
 <h5><a name="6.5.1.1" href="#6.5.1.1">6.5.1.1 Generic selection</a></h5>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           generic-selection:
@@ -4534,7 +4534,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                  type-name : assignment-expression
                  default : assignment-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  A generic selection shall have no more than one default generic association. The type
  name in a generic association shall specify a complete object type other than a variably
@@ -4545,7 +4545,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  compatible with at most one of the types named in its generic association list. If a
  generic selection has no default generic association, its controlling expression shall
  have type compatible with exactly one of the types named in its generic association list.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The controlling expression of a generic selection is not evaluated. If a generic selection
  has a generic association with a type name that is compatible with the type of the
@@ -4569,7 +4569,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 
 <h4><a name="6.5.2" href="#6.5.2">6.5.2 Postfix operators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <!--page 98 -->
 <pre>
@@ -4589,11 +4589,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
 
 <h5><a name="6.5.2.1" href="#6.5.2.1">6.5.2.1 Array subscripting</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  One of the expressions shall have type ''pointer to complete object type'', the other
  expression shall have integer type, and the result has type ''type''.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A postfix expression followed by an expression in square brackets [] is a subscripted
  designation of an element of an array object. The definition of the subscript operator []
@@ -4626,7 +4626,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  (<a href="#6.5.3.2">6.5.3.2</a>), array declarators (<a href="#6.7.6.2">6.7.6.2</a>).
 
 <h5><a name="6.5.2.2" href="#6.5.2.2">6.5.2.2 Function calls</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The expression that denotes the called function<sup><a href="#note92"><b>92)</b></a></sup> shall have type pointer to function
  returning void or returning a complete object type other than an array type.
@@ -4638,7 +4638,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 99 -->
  have a type such that its value may be assigned to an object with the unqualified version
  of the type of its corresponding parameter.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  A postfix expression followed by parentheses () containing a possibly empty, comma-
  separated list of expressions is a function call. The postfix expression denotes the called
@@ -4707,7 +4707,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: function declarators (including prototypes) (<a href="#6.7.6.3">6.7.6.3</a>), function
  definitions (<a href="#6.9.1">6.9.1</a>), the return statement (<a href="#6.8.6.4">6.8.6.4</a>), simple assignment (<a href="#6.5.16.1">6.5.16.1</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note92" href="#note92">92)</a> Most often, this is the result of converting an identifier that is a function designator.
 </small>
 <p><small><a name="note93" href="#note93">93)</a> A function may change the values of its parameters, but these changes cannot affect the values of the
@@ -4719,7 +4719,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="6.5.2.3" href="#6.5.2.3">6.5.2.3 Structure and union members</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The first operand of the . operator shall have an atomic, qualified, or unqualified
  structure or union type, and the second operand shall name a member of that type.
@@ -4727,7 +4727,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  The first operand of the -&gt; operator shall have type ''pointer to atomic, qualified, or
  unqualified structure'' or ''pointer to atomic, qualified, or unqualified union'', and the
  second operand shall name a member of the type pointed to.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  A postfix expression followed by the . operator and an identifier designates a member of
  a structure or union object. The value is that of the named member,<sup><a href="#note95"><b>95)</b></a></sup> and is an lvalue if
@@ -4826,7 +4826,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  specifiers (<a href="#6.7.2.1">6.7.2.1</a>).
 <!--page 103 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note95" href="#note95">95)</a> If the member used to read the contents of a union object is not the same as the member last used to
  store a value in the object, the appropriate part of the object representation of the value is reinterpreted
  as an object representation in the new type as described in <a href="#6.2.6">6.2.6</a> (a process sometimes called ''type
@@ -4841,11 +4841,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="6.5.2.4" href="#6.5.2.4">6.5.2.4 Postfix increment and decrement operators</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The operand of the postfix increment or decrement operator shall have atomic, qualified,
  or unqualified real or pointer type, and shall be a modifiable lvalue.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  The result of the postfix ++ operator is the value of the operand. As a side effect, the
  value of the operand object is incremented (that is, the value 1 of the appropriate type is
@@ -4862,7 +4862,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  it).
 <p><b> Forward references</b>: additive operators (<a href="#6.5.6">6.5.6</a>), compound assignment (<a href="#6.5.16.2">6.5.16.2</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note98" href="#note98">98)</a> Where a pointer to an atomic object can be formed, this is equivalent to the following code sequence
  where T is the type of E:
 
@@ -4877,13 +4877,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="6.5.2.5" href="#6.5.2.5">6.5.2.5 Compound literals</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The type name shall specify a complete object type or an array of unknown size, but not a
  variable length array type.
 <p><!--para 2 -->
  All the constraints for initializer lists in <a href="#6.7.9">6.7.9</a> also apply to compound literals.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  A postfix expression that consists of a parenthesized type name followed by a brace-
  enclosed list of initializers is a compound literal. It provides an unnamed object whose
@@ -5006,7 +5006,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: type names (<a href="#6.7.7">6.7.7</a>), initialization (<a href="#6.7.9">6.7.9</a>).
 <!--page 106 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note99" href="#note99">99)</a> Note that this differs from a cast expression. For example, a cast specifies a conversion to scalar types
  or void only, and the result of a cast expression is not an lvalue.
 </small>
@@ -5017,7 +5017,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h4><a name="6.5.3" href="#6.5.3">6.5.3 Unary operators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           unary-expression:
@@ -5033,11 +5033,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
 
 <h5><a name="6.5.3.1" href="#6.5.3.1">6.5.3.1 Prefix increment and decrement operators</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The operand of the prefix increment or decrement operator shall have atomic, qualified,
  or unqualified real or pointer type, and shall be a modifiable lvalue.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  The value of the operand of the prefix ++ operator is incremented. The result is the new
  value of the operand after incrementation. The expression ++E is equivalent to (E+=1).
@@ -5049,14 +5049,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: additive operators (<a href="#6.5.6">6.5.6</a>), compound assignment (<a href="#6.5.16.2">6.5.16.2</a>).
 
 <h5><a name="6.5.3.2" href="#6.5.3.2">6.5.3.2 Address and indirection operators</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The operand of the unary &amp; operator shall be either a function designator, the result of a
  [] or unary * operator, or an lvalue that designates an object that is not a bit-field and is
  not declared with the register storage-class specifier.
 <p><!--para 2 -->
  The operand of the unary * operator shall have pointer type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The unary &amp; operator yields the address of its operand. If the operand has type ''type'',
  the result has type ''pointer to type''. If the operand is the result of a unary * operator,
@@ -5076,7 +5076,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: storage-class specifiers (<a href="#6.7.1">6.7.1</a>), structure and union specifiers
  (<a href="#6.7.2.1">6.7.2.1</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note102" href="#note102">102)</a> Thus, &amp;*E is equivalent to E (even if E is a null pointer), and &amp;(E1[E2]) to ((E1)+(E2)). It is
  always true that if E is a function designator or an lvalue that is a valid operand of the unary &amp;
  operator, *&amp;E is a function designator or an lvalue equal to E. If *P is an lvalue and T is the name of
@@ -5087,11 +5087,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="6.5.3.3" href="#6.5.3.3">6.5.3.3 Unary arithmetic operators</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The operand of the unary + or - operator shall have arithmetic type; of the ~ operator,
  integer type; of the ! operator, scalar type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  The result of the unary + operator is the value of its (promoted) operand. The integer
  promotions are performed on the operand, and the result has the promoted type.
@@ -5114,13 +5114,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 108 -->
 
 <h5><a name="6.5.3.4" href="#6.5.3.4">6.5.3.4 The sizeof and alignof operators</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The sizeof operator shall not be applied to an expression that has function type or an
  incomplete type, to the parenthesized name of such a type, or to an expression that
  designates a bit-field member. The alignof operator shall not be applied to a function
  type or an incomplete type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  The sizeof operator yields the size (in bytes) of its operand, which may be an
  expression or the parenthesized name of a type. The size is determined from the type of
@@ -5184,20 +5184,20 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: common definitions <a href="#7.19">&lt;stddef.h&gt;</a> (<a href="#7.19">7.19</a>), declarations (<a href="#6.7">6.7</a>),
  structure and union specifiers (<a href="#6.7.2.1">6.7.2.1</a>), type names (<a href="#6.7.7">6.7.7</a>), array declarators (<a href="#6.7.6.2">6.7.6.2</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note103" href="#note103">103)</a> When applied to a parameter declared to have array or function type, the sizeof operator yields the
  size of the adjusted (pointer) type (see <a href="#6.9.1">6.9.1</a>).
 </small>
 
 <h4><a name="6.5.4" href="#6.5.4">6.5.4 Cast operators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           cast-expression:
                  unary-expression
                  ( type-name ) cast-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Unless the type name specifies a void type, the type name shall specify atomic, qualified,
  or unqualified scalar type, and the operand shall have scalar type.
@@ -5207,7 +5207,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 4 -->
  A pointer type shall not be converted to any floating type. A floating type shall not be
  converted to any pointer type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 5 -->
  Preceding an expression by a parenthesized type name converts the value of the
  expression to the named type. This construction is called a cast.<sup><a href="#note104"><b>104)</b></a></sup> A cast that specifies
@@ -5222,13 +5222,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 110 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note104" href="#note104">104)</a> A cast does not yield an lvalue. Thus, a cast to a qualified type has the same effect as a cast to the
  unqualified version of the type.
 </small>
 
 <h4><a name="6.5.5" href="#6.5.5">6.5.5 Multiplicative operators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           multiplicative-expression:
@@ -5237,11 +5237,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                   multiplicative-expression / cast-expression
                   multiplicative-expression % cast-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Each of the operands shall have arithmetic type. The operands of the % operator shall
  have integer type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The usual arithmetic conversions are performed on the operands.
 <p><!--para 4 -->
@@ -5256,12 +5256,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  (a/b)*b + a%b shall equal a; otherwise, the behavior of both a/b and a%b is
  undefined.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note105" href="#note105">105)</a> This is often called ''truncation toward zero''.
 </small>
 
 <h4><a name="6.5.6" href="#6.5.6">6.5.6 Additive operators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           additive-expression:
@@ -5269,7 +5269,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                  additive-expression + multiplicative-expression
                  additive-expression - multiplicative-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  For addition, either both operands shall have arithmetic type, or one operand shall be a
  pointer to a complete object type and the other shall have integer type. (Incrementing is
@@ -5289,7 +5289,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  integer type.
 </ul>
  (Decrementing is equivalent to subtracting 1.)
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  If both operands have arithmetic type, the usual arithmetic conversions are performed on
  them.
@@ -5353,7 +5353,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: array declarators (<a href="#6.7.6.2">6.7.6.2</a>), common definitions <a href="#7.19">&lt;stddef.h&gt;</a>
  (<a href="#7.19">7.19</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note106" href="#note106">106)</a> Another way to approach pointer arithmetic is first to convert the pointer(s) to character pointer(s): In
  this scheme the integer expression added to or subtracted from the converted pointer is first multiplied
  by the size of the object originally pointed to, and the resulting pointer is converted back to the
@@ -5365,7 +5365,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h4><a name="6.5.7" href="#6.5.7">6.5.7 Bitwise shift operators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           shift-expression:
@@ -5373,10 +5373,10 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                   shift-expression &lt;&lt; additive-expression
                   shift-expression &gt;&gt; additive-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Each of the operands shall have integer type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The integer promotions are performed on each of the operands. The type of the result is
  that of the promoted left operand. If the value of the right operand is negative or is
@@ -5396,7 +5396,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  resulting value is implementation-defined.
 
 <h4><a name="6.5.8" href="#6.5.8">6.5.8 Relational operators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           relational-expression:
@@ -5406,7 +5406,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                   relational-expression   &lt;=   shift-expression
                   relational-expression   &gt;=   shift-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  One of the following shall hold:
 <ul>
@@ -5414,7 +5414,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <li>  both operands are pointers to qualified or unqualified versions of compatible object
  types.
 </ul>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  If both of the operands have arithmetic type, the usual arithmetic conversions are
  performed.
@@ -5440,13 +5440,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  (greater than or equal to) shall yield 1 if the specified relation is true and 0 if it is
  false.<sup><a href="#note107"><b>107)</b></a></sup> The result has type int.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note107" href="#note107">107)</a> The expression a&lt;b&lt;c is not interpreted as in ordinary mathematics. As the syntax indicates, it
  means (a&lt;b)&lt;c; in other words, ''if a is less than b, compare 1 to c; otherwise, compare 0 to c''.
 </small>
 
 <h4><a name="6.5.9" href="#6.5.9">6.5.9 Equality operators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           equality-expression:
@@ -5454,7 +5454,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                  equality-expression == relational-expression
                  equality-expression != relational-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  One of the following shall hold:
 <ul>
@@ -5464,7 +5464,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  unqualified version of void; or
 <li>  one operand is a pointer and the other is a null pointer constant.
 </ul>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The == (equal to) and != (not equal to) operators are analogous to the relational
  operators except for their lower precedence.<sup><a href="#note108"><b>108)</b></a></sup> Each of the operators yields 1 if the
@@ -5497,7 +5497,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  array behaves the same as a pointer to the first element of an array of length one with the
  type of the object as its element type.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note108" href="#note108">108)</a> Because of the precedences, a&lt;b == c&lt;d is 1 whenever a&lt;b and c&lt;d have the same truth-value.
 </small>
 <p><small><a name="note109" href="#note109">109)</a> Two objects may be adjacent in memory because they are adjacent elements of a larger array or
@@ -5508,17 +5508,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h4><a name="6.5.10" href="#6.5.10">6.5.10 Bitwise AND operator</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           AND-expression:
                 equality-expression
                 AND-expression &amp; equality-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Each of the operands shall have integer type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The usual arithmetic conversions are performed on the operands.
 <p><!--para 4 -->
@@ -5532,17 +5532,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 116 -->
 
 <h4><a name="6.5.11" href="#6.5.11">6.5.11 Bitwise exclusive OR operator</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           exclusive-OR-expression:
                   AND-expression
                   exclusive-OR-expression ^ AND-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Each of the operands shall have integer type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The usual arithmetic conversions are performed on the operands.
 <p><!--para 4 -->
@@ -5551,17 +5551,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  operands is set).
 
 <h4><a name="6.5.12" href="#6.5.12">6.5.12 Bitwise inclusive OR operator</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           inclusive-OR-expression:
                   exclusive-OR-expression
                   inclusive-OR-expression | exclusive-OR-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Each of the operands shall have integer type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The usual arithmetic conversions are performed on the operands.
 <p><!--para 4 -->
@@ -5571,17 +5571,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 117 -->
 
 <h4><a name="6.5.13" href="#6.5.13">6.5.13 Logical AND operator</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           logical-AND-expression:
                   inclusive-OR-expression
                   logical-AND-expression &amp;&amp; inclusive-OR-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Each of the operands shall have scalar type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The &amp;&amp; operator shall yield 1 if both of its operands compare unequal to 0; otherwise, it
  yields 0. The result has type int.
@@ -5592,17 +5592,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  operand is not evaluated.
 
 <h4><a name="6.5.14" href="#6.5.14">6.5.14 Logical OR operator</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           logical-OR-expression:
                   logical-AND-expression
                   logical-OR-expression || logical-AND-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Each of the operands shall have scalar type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The || operator shall yield 1 if either of its operands compare unequal to 0; otherwise, it
  yields 0. The result has type int.
@@ -5614,14 +5614,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 118 -->
 
 <h4><a name="6.5.15" href="#6.5.15">6.5.15 Conditional operator</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           conditional-expression:
                  logical-OR-expression
                  logical-OR-expression ? expression : conditional-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  The first operand shall have scalar type.
 <p><!--para 3 -->
@@ -5635,7 +5635,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <li>  one operand is a pointer to an object type and the other is a pointer to a qualified or
  unqualified version of void.
 </ul>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  The first operand is evaluated; there is a sequence point between its evaluation and the
  evaluation of the second or third operand (whichever is evaluated). The second operand
@@ -5684,12 +5684,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note110" href="#note110">110)</a> A conditional expression does not yield an lvalue.
 </small>
 
 <h4><a name="6.5.16" href="#6.5.16">6.5.16 Assignment operators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           assignment-expression:
@@ -5698,10 +5698,10 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
           assignment-operator: one of
                  = *= /= %= +=                       -=     &lt;&lt;=      &gt;&gt;=      &amp;=     ^=     |=
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  An assignment operator shall have a modifiable lvalue as its left operand.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  An assignment operator stores a value in the object designated by the left operand. An
  assignment expression has the value of the left operand after the assignment,<sup><a href="#note111"><b>111)</b></a></sup> but is not
@@ -5715,13 +5715,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 120 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note111" href="#note111">111)</a> The implementation is permitted to read the object to determine the value but is not required to, even
  when the object has volatile-qualified type.
 </small>
 
 <h5><a name="6.5.16.1" href="#6.5.16.1">6.5.16.1 Simple assignment</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  One of the following shall hold:<sup><a href="#note112"><b>112)</b></a></sup>
 <ul>
@@ -5743,7 +5743,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <li>  the left operand has type atomic, qualified, or unqualified _Bool, and the right is a
  pointer.
 </ul>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  In simple assignment (=), the value of the right operand is converted to the type of the
  assignment expression and replaces the value stored in the object designated by the left
@@ -5799,7 +5799,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  value of the const object c.
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note112" href="#note112">112)</a> The asymmetric appearance of these constraints with respect to type qualifiers is due to the conversion
  (specified in <a href="#6.3.2.1">6.3.2.1</a>) that changes lvalues to ''the value of the expression'' and thus removes any type
  qualifiers that were applied to the type category of the expression (for example, it removes const but
@@ -5807,7 +5807,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="6.5.16.2" href="#6.5.16.2">6.5.16.2 Compound assignment</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  For the operators += and -= only, either the left operand shall be an atomic, qualified, or
  unqualified pointer to a complete object type, and the right shall have integer type; or the
@@ -5818,7 +5818,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  arithmetic type, and (considering the type the left operand would have after lvalue
  conversion) each operand shall have arithmetic type consistent with those allowed by the
  corresponding binary operator.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  A compound assignment of the form E1 op = E2 is equivalent to the simple assignment
  expression E1 = E1 op (E2), except that the lvalue E1 is evaluated only once, and with
@@ -5828,7 +5828,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  read-modify-write operation with memory_order_seq_cst memory order
  semantics.<sup><a href="#note113"><b>113)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note113" href="#note113">113)</a> Where a pointer to an atomic object can be formed, this is equivalent to the following code sequence
  where T is the type of E1:
 
@@ -5843,14 +5843,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h4><a name="6.5.17" href="#6.5.17">6.5.17 Comma operator</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           expression:
                  assignment-expression
                  expression , assignment-expression
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  The left operand of a comma operator is evaluated as a void expression; there is a
  sequence point between its evaluation and that of the right operand. Then the right
@@ -5872,22 +5872,22 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 123 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note114" href="#note114">114)</a> A comma operator does not yield an lvalue.
 </small>
 
 <h3><a name="6.6" href="#6.6">6.6 Constant expressions</a></h3>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           constant-expression:
                  conditional-expression
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  A constant expression can be evaluated during translation rather than runtime, and
  accordingly may be used in any place that a constant may be.
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 3 -->
  Constant expressions shall not contain assignment, increment, decrement, function-call,
  or comma operators, except when they are contained within a subexpression that is not
@@ -5895,7 +5895,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 4 -->
  Each constant expression shall evaluate to a constant that is in the range of representable
  values for its type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 5 -->
  An expression that evaluates to a constant is required in several contexts. If a floating
  expression is evaluated in the translation environment, the arithmetic precision and range
@@ -5948,7 +5948,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 125 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note115" href="#note115">115)</a> The operand of a sizeof operator is usually not evaluated (<a href="#6.5.3.4">6.5.3.4</a>).
 </small>
 <p><small><a name="note116" href="#note116">116)</a> The use of evaluation formats as characterized by FLT_EVAL_METHOD also applies to evaluation in
@@ -5968,7 +5968,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h3><a name="6.7" href="#6.7">6.7 Declarations</a></h3>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           declaration:
@@ -5987,7 +5987,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                   declarator
                   declarator = initializer
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  A declaration other than a static_assert declaration shall declare at least a declarator
  (other than the parameters of a function or the members of a structure or union), a tag, or
@@ -6000,7 +6000,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 4 -->
  All declarations in the same scope that refer to the same object or function shall specify
  compatible types.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 5 -->
  A declaration specifies the interpretation and attributes of a set of identifiers. A definition
  of an identifier is a declaration for that identifier that:
@@ -6028,12 +6028,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: declarators (<a href="#6.7.6">6.7.6</a>), enumeration specifiers (<a href="#6.7.2.2">6.7.2.2</a>), initialization
  (<a href="#6.7.9">6.7.9</a>), type names (<a href="#6.7.7">6.7.7</a>), type qualifiers (<a href="#6.7.3">6.7.3</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note119" href="#note119">119)</a> Function definitions have a different syntax, described in <a href="#6.9.1">6.9.1</a>.
 </small>
 
 <h4><a name="6.7.1" href="#6.7.1">6.7.1 Storage-class specifiers</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           storage-class-specifier:
@@ -6044,7 +6044,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                  auto
                  register
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  At most, one storage-class specifier may be given in the declaration specifiers in a
  declaration, except that _Thread_local may appear with static or extern.<sup><a href="#note120"><b>120)</b></a></sup>
@@ -6053,7 +6053,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  _Thread_local, they shall also include either static or extern. If
  _Thread_local appears in any declaration of an object, it shall be present in every
  declaration of that object.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  The typedef specifier is called a ''storage-class specifier'' for syntactic convenience
  only; it is discussed in <a href="#6.7.8">6.7.8</a>. The meanings of the various linkages and storage durations
@@ -6076,7 +6076,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  or union member objects.
 <p><b> Forward references</b>: type definitions (<a href="#6.7.8">6.7.8</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note120" href="#note120">120)</a> See ''future language directions'' (<a href="#6.11.5">6.11.5</a>).
 </small>
 <p><small><a name="note121" href="#note121">121)</a> The implementation may treat any register declaration simply as an auto declaration. However,
@@ -6088,7 +6088,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h4><a name="6.7.2" href="#6.7.2">6.7.2 Type specifiers</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           type-specifier:
@@ -6108,7 +6108,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                  enum-specifier
                  typedef-name
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  At least one type specifier shall be given in the declaration specifiers in each declaration,
  and in the specifier-qualifier list in each struct declaration and type name. Each list of
@@ -6148,7 +6148,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  The type specifier _Complex shall not be used if the implementation does not support
  complex types (see <a href="#6.10.8.3">6.10.8.3</a>).
 <!--page 129 -->
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  Specifiers for structures, unions, enumerations, and atomic types are discussed in <a href="#6.7.2.1">6.7.2.1</a>
  through <a href="#6.7.2.4">6.7.2.4</a>. Declarations of typedef names are discussed in <a href="#6.7.8">6.7.8</a>. The
@@ -6161,7 +6161,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  structure and union specifiers (<a href="#6.7.2.1">6.7.2.1</a>), tags (<a href="#6.7.2.3">6.7.2.3</a>), type definitions (<a href="#6.7.8">6.7.8</a>).
 
 <h5><a name="6.7.2.1" href="#6.7.2.1">6.7.2.1 Structure and union specifiers</a></h5>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           struct-or-union-specifier:
@@ -6186,7 +6186,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                   declarator
                   declarator<sub>opt</sub> : constant-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  A struct-declaration that does not declare an anonymous structure or anonymous union
  shall contain a struct-declarator-list.
@@ -6207,7 +6207,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  A bit-field shall have a type that is a qualified or unqualified version of _Bool, signed
  int, unsigned int, or some other implementation-defined type. It is
  implementation-defined whether atomic types are permitted.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 6 -->
  As discussed in <a href="#6.2.5">6.2.5</a>, a structure is a type consisting of a sequence of members, whose
  storage is allocated in an ordered sequence, and a union is a type consisting of a sequence
@@ -6387,7 +6387,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: declarators (<a href="#6.7.6">6.7.6</a>), tags (<a href="#6.7.2.3">6.7.2.3</a>).
 <!--page 134 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note122" href="#note122">122)</a> While the number of bits in a _Bool object is at least CHAR_BIT, the width (number of sign and
  value bits) of a _Bool may be just 1 bit.
 </small>
@@ -6405,7 +6405,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="6.7.2.2" href="#6.7.2.2">6.7.2.2 Enumeration specifiers</a></h5>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           enum-specifier:
@@ -6419,11 +6419,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                 enumeration-constant
                 enumeration-constant = constant-expression
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  The expression that defines the value of an enumeration constant shall be an integer
  constant expression that has a value representable as an int.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The identifiers in an enumerator list are declared as constants that have type int and
  may appear wherever such are permitted.<sup><a href="#note127"><b>127)</b></a></sup> An enumerator with = defines its
@@ -6459,7 +6459,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <p><b> Forward references</b>: tags (<a href="#6.7.2.3">6.7.2.3</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note127" href="#note127">127)</a> Thus, the identifiers of enumeration constants declared in the same scope shall all be distinct from
  each other and from other identifiers declared in ordinary declarators.
 </small>
@@ -6468,7 +6468,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="6.7.2.3" href="#6.7.2.3">6.7.2.3 Tags</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  A specific type shall have its content defined at most once.
 <p><!--para 2 -->
@@ -6480,7 +6480,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          enum identifier
 </pre>
  without an enumerator list shall only appear after the type it specifies is complete.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  All declarations of structure, union, or enumerated types that have the same scope and
  use the same tag declare the same type. Irrespective of whether there is a tag or what
@@ -6589,7 +6589,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <p><b> Forward references</b>: declarators (<a href="#6.7.6">6.7.6</a>), type definitions (<a href="#6.7.8">6.7.8</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note129" href="#note129">129)</a> An incomplete type may only by used when the size of an object of that type is not needed. It is not
  needed, for example, when a typedef name is declared to be a specifier for a structure or union, or
  when a pointer to or a function returning a structure or union is being declared. (See incomplete types
@@ -6604,20 +6604,20 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="6.7.2.4" href="#6.7.2.4">6.7.2.4 Atomic type specifiers</a></h5>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           atomic-type-specifier:
                  _Atomic ( type-name )
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Atomic type specifiers shall not be used if the implementation does not support atomic
  types (see <a href="#6.10.8.3">6.10.8.3</a>).
 <p><!--para 3 -->
  The type name in an atomic type specifier shall not refer to an array type, a function type,
  an atomic type, or a qualified type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  The properties associated with atomic types are meaningful only for expressions that are
  lvalues. If the _Atomic keyword is immediately followed by a left parenthesis, it is
@@ -6625,7 +6625,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 138 -->
 
 <h4><a name="6.7.3" href="#6.7.3">6.7.3 Type qualifiers</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           type-qualifier:
@@ -6634,14 +6634,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                  volatile
                  _Atomic
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Types other than pointer types whose referenced type is an object type shall not be
  restrict-qualified.
 <p><!--para 3 -->
  The type modified by the _Atomic qualifier shall not be an array type or a function
  type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  The properties associated with qualified types are meaningful only for expressions that
  are lvalues.<sup><a href="#note132"><b>132)</b></a></sup>
@@ -6720,7 +6720,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  specifies that p has the type ''pointer to volatile atomic int'', a pointer to a volatile-qualified atomic type.
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note132" href="#note132">132)</a> The implementation may place a const object that is not volatile in a read-only region of
  storage. Moreover, the implementation need not allocate storage for such an object if its address is
  never used.
@@ -6856,7 +6856,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note137" href="#note137">137)</a> In other words, E depends on the value of P itself rather than on the value of an object referenced
  indirectly through P. For example, if identifier p has type (int **restrict), then the pointer
  expressions p and p+1 are based on the restricted pointer object designated by p, but the pointer
@@ -6864,14 +6864,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h4><a name="6.7.4" href="#6.7.4">6.7.4 Function specifiers</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           function-specifier:
                  inline
                  _Noreturn
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  Function specifiers shall be used only in the declaration of an identifier for a function.
 <p><!--para 3 -->
@@ -6880,7 +6880,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  to an identifier with internal linkage.
 <p><!--para 4 -->
  In a hosted environment, no function specifier(s) shall appear in a declaration of main.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 5 -->
  A function specifier may appear more than once; the behavior is the same as if it
  appeared only once.
@@ -6906,7 +6906,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  function uses the inline definition or the external definition.<sup><a href="#note140"><b>140)</b></a></sup>
 <p><!--para 8 -->
  A function declared with a _Noreturn function specifier shall not return to its caller.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 9 -->
  The implementation should produce a diagnostic message for a function declared with a
  _Noreturn function specifier that appears to be capable of returning to its caller.
@@ -6954,7 +6954,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <p><b> Forward references</b>: function definitions (<a href="#6.9.1">6.9.1</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note138" href="#note138">138)</a> By using, for example, an alternative to the usual function call mechanism, such as ''inline
  substitution''. Inline substitution is not textual substitution, nor does it create a new function.
  Therefore, for example, the expansion of a macro used within the body of the function uses the
@@ -6972,14 +6972,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h4><a name="6.7.5" href="#6.7.5">6.7.5 Alignment specifier</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           alignment-specifier:
                 _Alignas ( type-name )
                 _Alignas ( constant-expression )
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  An alignment attribute shall not be specified in a declaration of a typedef, or a bit-field, or
  a function, or a parameter, or an object declared with the register storage-class
@@ -6992,7 +6992,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  The combined effect of all alignment attributes in a declaration shall not specify an
  alignment that is less strict than the alignment that would otherwise be required for the
  type of the object or member being declared.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 5 -->
  The first form is equivalent to _Alignas(alignof(type-name)).
 <p><!--para 6 -->
@@ -7011,13 +7011,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 145 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note141" href="#note141">141)</a> An alignment specification of zero also does not affect other alignment specifications in the same
  declaration.
 </small>
 
 <h4><a name="6.7.6" href="#6.7.6">6.7.6 Declarators</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           declarator:
@@ -7050,7 +7050,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                  identifier
                  identifier-list , identifier
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  Each declarator declares one identifier, and asserts that when an operand of the same
  form as the declarator appears in an expression, it designates a function or object with the
@@ -7084,7 +7084,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  then ident has the type specified by the declaration ''T D''. Thus, a declarator in
  parentheses is identical to the unparenthesized declarator, but the binding of complicated
  declarators may be altered by parentheses.
-<h6>Implementation limits</h6>
+<p><b>Implementation limits</b>
 <p><!--para 7 -->
  As discussed in <a href="#5.2.4.1">5.2.4.1</a>, an implementation may limit the number of pointer, array, and
  function declarators that modify an arithmetic, structure, union, or void type, either
@@ -7092,7 +7092,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: array declarators (<a href="#6.7.6.2">6.7.6.2</a>), type definitions (<a href="#6.7.8">6.7.8</a>).
 
 <h5><a name="6.7.6.1" href="#6.7.6.1">6.7.6.1 Pointer declarators</a></h5>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 1 -->
  If, in the declaration ''T D1'', D1 has the form
 <pre>
@@ -7127,7 +7127,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 
 <h5><a name="6.7.6.2" href="#6.7.6.2">6.7.6.2 Array declarators</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  In addition to optional type qualifiers and the keyword static, the [ and ] may delimit
  an expression or *. If they delimit an expression (which specifies the size of an array), the
@@ -7141,7 +7141,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  identifier (as defined in <a href="#6.2.3">6.2.3</a>), have no linkage, and have either block scope or function
  prototype scope. If an identifier is declared to be an object with static or thread storage
  duration, it shall not have a variable length array type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  If, in the declaration ''T D1'', D1 has one of the forms:
 <pre>
@@ -7246,14 +7246,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>:          function declarators (<a href="#6.7.6.3">6.7.6.3</a>), function definitions (<a href="#6.9.1">6.9.1</a>),
  initialization (<a href="#6.7.9">6.7.9</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note142" href="#note142">142)</a> When several ''array of'' specifications are adjacent, a multidimensional array is declared.
 </small>
 <p><small><a name="note143" href="#note143">143)</a> Thus, * can be used only in function declarations that are not definitions (see <a href="#6.7.6.3">6.7.6.3</a>).
 </small>
 
 <h5><a name="6.7.6.3" href="#6.7.6.3">6.7.6.3 Function declarators (including prototypes)</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  A function declarator shall not specify a return type that is a function type or an array
  type.
@@ -7265,7 +7265,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 4 -->
  After adjustment, the parameters in a parameter type list in a function declarator that is
  part of a definition of that function shall not have incomplete type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 5 -->
  If, in the declaration ''T D1'', D1 has the form
 <!--page 150 -->
@@ -7417,7 +7417,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: function definitions (<a href="#6.9.1">6.9.1</a>), type names (<a href="#6.7.7">6.7.7</a>).
 <!--page 153 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note144" href="#note144">144)</a> The macros defined in the <a href="#7.16">&lt;stdarg.h&gt;</a> header (<a href="#7.16">7.16</a>) may be used to access arguments that
  correspond to the ellipsis.
 </small>
@@ -7427,7 +7427,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h4><a name="6.7.7" href="#6.7.7">6.7.7 Type names</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           type-name:
@@ -7446,7 +7446,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                   direct-abstract-declarator<sub>opt</sub> [ * ]
                   direct-abstract-declarator<sub>opt</sub> ( parameter-type-list<sub>opt</sub> )
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  In several contexts, it is necessary to specify a type. This is accomplished using a type
  name, which is syntactically a declaration for a function or an object of that type that
@@ -7475,22 +7475,22 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 154 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note147" href="#note147">147)</a> As indicated by the syntax, empty parentheses in a type name are interpreted as ''function with no
  parameter specification'', rather than redundant parentheses around the omitted identifier.
 </small>
 
 <h4><a name="6.7.8" href="#6.7.8">6.7.8 Type definitions</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           typedef-name:
                  identifier
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  If a typedef name specifies a variably modified type then it shall have block scope.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  In a declaration whose storage-class specifier is typedef, each declarator defines an
  identifier to be a typedef name that denotes the type specified for the identifier in the way
@@ -7588,7 +7588,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
 
 <h4><a name="6.7.9" href="#6.7.9">6.7.9 Initialization</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           initializer:
@@ -7607,7 +7607,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                  [ constant-expression ]
                  . identifier
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  No initializer shall attempt to provide a value for an object not contained within the entity
  being initialized.
@@ -7636,7 +7636,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  then the current object (defined below) shall have structure or union type and the
  identifier shall be the name of a member of that type.
 <!--page 157 -->
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 8 -->
  An initializer specifies the initial value stored in an object.
 <p><!--para 9 -->
@@ -7910,7 +7910,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: common definitions <a href="#7.19">&lt;stddef.h&gt;</a> (<a href="#7.19">7.19</a>).
 <!--page 162 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note148" href="#note148">148)</a> If the initializer list for a subaggregate or contained union does not begin with a left brace, its
  subobjects are initialized as usual, but the subaggregate or contained union does not become the
  current object: current objects are associated only with brace-enclosed initializer lists.
@@ -7928,16 +7928,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h4><a name="6.7.10" href="#6.7.10">6.7.10 Static assertions</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           static_assert-declaration:
                   _Static_assert ( constant-expression , string-literal ) ;
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  The constant expression shall compare unequal to 0.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  The constant expression shall be an integer constant expression. If the value of the
  constant expression compares unequal to 0, the declaration has no effect. Otherwise, the
@@ -7948,7 +7948,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 163 -->
 
 <h3><a name="6.8" href="#6.8">6.8 Statements and blocks</a></h3>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           statement:
@@ -7959,7 +7959,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                  iteration-statement
                  jump-statement
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A statement specifies an action to be performed. Except as indicated, statements are
  executed in sequence.
@@ -7982,7 +7982,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  (<a href="#6.8.4">6.8.4</a>), iteration statements (<a href="#6.8.5">6.8.5</a>), the return statement (<a href="#6.8.6.4">6.8.6.4</a>).
 
 <h4><a name="6.8.1" href="#6.8.1">6.8.1 Labeled statements</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           labeled-statement:
@@ -7990,14 +7990,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                  case constant-expression : statement
                  default : statement
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  A case or default label shall appear only in a switch statement. Further
  constraints on such labels are discussed under the switch statement.
 <!--page 164 -->
 <p><!--para 3 -->
  Label names shall be unique within a function.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  Any statement may be preceded by a prefix that declares an identifier as a label name.
  Labels in themselves do not alter the flow of control, which continues unimpeded across
@@ -8005,7 +8005,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: the goto statement (<a href="#6.8.6.1">6.8.6.1</a>), the switch statement (<a href="#6.8.4.2">6.8.4.2</a>).
 
 <h4><a name="6.8.2" href="#6.8.2">6.8.2 Compound statement</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           compound-statement:
@@ -8017,18 +8017,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                   declaration
                   statement
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A compound statement is a block.
 
 <h4><a name="6.8.3" href="#6.8.3">6.8.3 Expression and null statements</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           expression-statement:
                  expression<sub>opt</sub> ;
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  The expression in an expression statement is evaluated as a void expression for its side
  effects.<sup><a href="#note153"><b>153)</b></a></sup>
@@ -8076,12 +8076,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <p><b> Forward references</b>: iteration statements (<a href="#6.8.5">6.8.5</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note153" href="#note153">153)</a> Such as assignments, and function calls which have side effects.
 </small>
 
 <h4><a name="6.8.4" href="#6.8.4">6.8.4 Selection statements</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           selection-statement:
@@ -8089,7 +8089,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                   if ( expression ) statement else statement
                   switch ( expression ) statement
 </pre>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A selection statement selects among a set of statements depending on the value of a
  controlling expression.
@@ -8099,10 +8099,10 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  subset of the scope of the selection statement.
 
 <h5><a name="6.8.4.1" href="#6.8.4.1">6.8.4.1 The if statement</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The controlling expression of an if statement shall have scalar type.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  In both forms, the first substatement is executed if the expression compares unequal to 0.
  In the else form, the second substatement is executed if the expression compares equal
@@ -8114,7 +8114,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  syntax.
 
 <h5><a name="6.8.4.2" href="#6.8.4.2">6.8.4.2 The switch statement</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The controlling expression of a switch statement shall have integer type.
 <p><!--para 2 -->
@@ -8128,7 +8128,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  (Any enclosed switch statement may have a default label or case constant
  expressions with values that duplicate case constant expressions in the enclosing
  switch statement.)
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  A switch statement causes control to jump to, into, or past the statement that is the
  switch body, depending on the value of a controlling expression, and on the presence of a
@@ -8142,7 +8142,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  a default label, control jumps to the labeled statement. If no converted case constant
  expression matches and there is no default label, no part of the switch body is
  executed.
-<h6>Implementation limits</h6>
+<p><b>Implementation limits</b>
 <p><!--para 6 -->
  As discussed in <a href="#5.2.4.1">5.2.4.1</a>, the implementation may limit the number of case values in a
  switch statement.
@@ -8170,13 +8170,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  access an indeterminate value. Similarly, the call to the function f cannot be reached.
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note154" href="#note154">154)</a> That is, the declaration either precedes the switch statement, or it follows the last case or
  default label associated with the switch that is in the block containing the declaration.
 </small>
 
 <h4><a name="6.8.5" href="#6.8.5">6.8.5 Iteration statements</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           iteration-statement:
@@ -8185,13 +8185,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                   for ( expression<sub>opt</sub> ; expression<sub>opt</sub> ; expression<sub>opt</sub> ) statement
                   for ( declaration expression<sub>opt</sub> ; expression<sub>opt</sub> ) statement
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  The controlling expression of an iteration statement shall have scalar type.
 <p><!--para 3 -->
  The declaration part of a for statement shall only declare identifiers for objects having
  storage class auto or register.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  An iteration statement causes a statement called the loop body to be executed repeatedly
  until the controlling expression compares equal to 0. The repetition occurs regardless of
@@ -8209,7 +8209,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  a for statement) its expression-3, may be assumed by the implementation to
  terminate.<sup><a href="#note157"><b>157)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note155" href="#note155">155)</a> Code jumped over is not executed. In particular, the controlling expression of a for or while
  statement is not evaluated before entering the loop body, nor is clause-1 of a for statement.
 </small>
@@ -8246,7 +8246,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  Both clause-1 and expression-3 can be omitted. An omitted expression-2 is replaced by a
  nonzero constant.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note158" href="#note158">158)</a> Thus, clause-1 specifies initialization for the loop, possibly declaring one or more variables for use in
  the loop; the controlling expression, expression-2, specifies an evaluation made before each iteration,
  such that execution of the loop continues until the expression compares equal to 0; and expression-3
@@ -8254,7 +8254,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h4><a name="6.8.6" href="#6.8.6">6.8.6 Jump statements</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           jump-statement:
@@ -8268,17 +8268,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
  
 <!--page 169 -->
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A jump statement causes an unconditional jump to another place.
 
 <h5><a name="6.8.6.1" href="#6.8.6.1">6.8.6.1 The goto statement</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The identifier in a goto statement shall name a label located somewhere in the enclosing
  function. A goto statement shall not jump from outside the scope of an identifier having
  a variably modified type to inside the scope of that identifier.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A goto statement causes an unconditional jump to the statement prefixed by the named
  label in the enclosing function.
@@ -8330,10 +8330,10 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 
 <h5><a name="6.8.6.2" href="#6.8.6.2">6.8.6.2 The continue statement</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  A continue statement shall appear only in or as a loop body.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A continue statement causes a jump to the loop-continuation portion of the smallest
  enclosing iteration statement; that is, to the end of the loop body. More precisely, in each
@@ -8349,15 +8349,15 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  unless the continue statement shown is in an enclosed iteration statement (in which
  case it is interpreted within that statement), it is equivalent to goto contin;.<sup><a href="#note159"><b>159)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note159" href="#note159">159)</a> Following the contin: label is a null statement.
 </small>
 
 <h5><a name="6.8.6.3" href="#6.8.6.3">6.8.6.3 The break statement</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  A break statement shall appear only in or as a switch body or loop body.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A break statement terminates execution of the smallest enclosing switch or iteration
  statement.
@@ -8367,12 +8367,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 171 -->
 
 <h5><a name="6.8.6.4" href="#6.8.6.4">6.8.6.4 The return statement</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  A return statement with an expression shall not appear in a function whose return type
  is void. A return statement without an expression shall only appear in a function
  whose return type is void.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A return statement terminates execution of the current function and returns control to
  its caller. A function may have any number of return statements.
@@ -8410,14 +8410,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 172 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note160" href="#note160">160)</a> The return statement is not an assignment. The overlap restriction of subclause <a href="#6.5.16.1">6.5.16.1</a> does not
  apply to the case of function return. The representation of floating-point values may have wider range
  or precision than implied by the type; a cast may be used to remove this extra range and precision.
 </small>
 
 <h3><a name="6.9" href="#6.9">6.9 External definitions</a></h3>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           translation-unit:
@@ -8427,7 +8427,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                  function-definition
                  declaration
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  The storage-class specifiers auto and register shall not appear in the declaration
  specifiers in an external declaration.
@@ -8437,7 +8437,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  linkage is used in an expression (other than as a part of the operand of a sizeof
  operator whose result is an integer constant), there shall be exactly one external definition
  for the identifier in the translation unit.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 4 -->
  As discussed in <a href="#5.1.1.1">5.1.1.1</a>, the unit of program text after preprocessing is a translation unit,
  which consists of a sequence of external declarations. These are described as ''external''
@@ -8457,13 +8457,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 173 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note161" href="#note161">161)</a> Thus, if an identifier declared with external linkage is not used in an expression, there need be no
  external definition for it.
 </small>
 
 <h4><a name="6.9.1" href="#6.9.1">6.9.1 Function definitions</a></h4>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <pre>
           function-definition:
@@ -8472,7 +8472,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                  declaration
                  declaration-list declaration
 </pre>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 2 -->
  The identifier declared in a function definition (which is the name of the function) shall
  have a function type, as specified by the declarator portion of the function definition.<sup><a href="#note162"><b>162)</b></a></sup>
@@ -8498,7 +8498,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
  
 <!--page 174 -->
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 7 -->
  The declarator in a function definition specifies the name of the function being defined
  and the identifiers of its parameters. If the declarator includes a parameter type list, the
@@ -8581,7 +8581,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note162" href="#note162">162)</a> The intent is that the type category in a function definition cannot be inherited from a typedef:
 
 <pre>
@@ -8604,7 +8604,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h4><a name="6.9.2" href="#6.9.2">6.9.2 External object definitions</a></h4>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 1 -->
  If the declaration of an identifier for an object has file scope and an initializer, the
  declaration is an external definition for the identifier.
@@ -8650,7 +8650,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 177 -->
 
 <h3><a name="6.10" href="#6.10">6.10 Preprocessing directives</a></h3>
-<h6>Syntax</h6>
+<p><b>Syntax</b>
 <p><!--para 1 -->
 <!--page 178 -->
 <pre>
@@ -8706,7 +8706,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
           new-line:
                  the new-line character
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  A preprocessing directive consists of a sequence of preprocessing tokens that satisfies the
  following constraints: The first token in the sequence is a # preprocessing token that (at
@@ -8725,14 +8725,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  When in a group that is skipped (<a href="#6.10.1">6.10.1</a>), the directive syntax is relaxed to allow any
  sequence of preprocessing tokens to occur between the directive name and the following
  new-line character.
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 5 -->
  The only white-space characters that shall appear between preprocessing tokens within a
  preprocessing directive (from just after the introducing # preprocessing token through
  just before the terminating new-line character) are space and horizontal-tab (including
  spaces that have replaced comments or possibly other white-space characters in
  translation phase 3).
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 6 -->
  The implementation can process and skip sections of source files conditionally, include
  other source files, and replace macros. These capabilities are called preprocessing,
@@ -8751,14 +8751,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  replaced.
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note165" href="#note165">165)</a> Thus, preprocessing directives are commonly called ''lines''. These ''lines'' have no other syntactic
  significance, as all white space is equivalent except in certain situations during preprocessing (see the
  # character string literal creation operator in <a href="#6.10.3.2">6.10.3.2</a>, for example).
 </small>
 
 <h4><a name="6.10.1" href="#6.10.1">6.10.1 Conditional inclusion</a></h4>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The expression that controls conditional inclusion shall be an integer constant expression
  except that: identifiers (including those lexically identical to keywords) are interpreted as *
@@ -8780,7 +8780,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  Each preprocessing token that remains (in the list of preprocessing tokens that will
  become the controlling expression) after all macro replacements have occurred shall be in
  the lexical form of a token (<a href="#6.4">6.4</a>).
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 3 -->
  Preprocessing directives of the forms
 <pre>
@@ -8833,7 +8833,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: macro replacement (<a href="#6.10.3">6.10.3</a>), source file inclusion (<a href="#6.10.2">6.10.2</a>), largest
  integer types (<a href="#7.20.1.5">7.20.1.5</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note166" href="#note166">166)</a> Because the controlling constant expression is evaluated during translation phase 4, all identifiers
  either are or are not macro names -- there simply are no keywords, enumeration constants, etc.
 </small>
@@ -8852,11 +8852,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h4><a name="6.10.2" href="#6.10.2">6.10.2 Source file inclusion</a></h4>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  A #include directive shall identify a header or source file that can be processed by the
  implementation.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  A preprocessing directive of the form
 <pre>
@@ -8931,13 +8931,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <p><b> Forward references</b>: macro replacement (<a href="#6.10.3">6.10.3</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note170" href="#note170">170)</a> Note that adjacent string literals are not concatenated into a single string literal (see the translation
  phases in <a href="#5.1.1.2">5.1.1.2</a>); thus, an expansion that results in two string literals is an invalid directive.
 </small>
 
 <h4><a name="6.10.3" href="#6.10.3">6.10.3 Macro replacement</a></h4>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  Two replacement lists are identical if and only if the preprocessing tokens in both have
  the same number, ordering, spelling, and white-space separation, where all white-space
@@ -8966,7 +8966,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 6 -->
  A parameter identifier in a function-like macro shall be uniquely declared within its
  scope.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 7 -->
  The identifier immediately following the define is called the macro name. There is one
  name space for macro names. Any white-space characters preceding or following the
@@ -9020,7 +9020,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  merger, the number of arguments is one more than the number of parameters in the macro
  definition (excluding the ...).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note171" href="#note171">171)</a> Since, by macro-replacement time, all character constants and string literals are preprocessing tokens,
  not sequences possibly containing identifier-like subsequences (see <a href="#5.1.1.2">5.1.1.2</a>, translation phases), they
  are never scanned for macro names or parameters.
@@ -9043,11 +9043,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  replace it.
 
 <h5><a name="6.10.3.2" href="#6.10.3.2">6.10.3.2 The # operator</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  Each # preprocessing token in the replacement list for a function-like macro shall be
  followed by a parameter as the next preprocessing token in the replacement list.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  If, in the replacement list, a parameter is immediately preceded by a # preprocessing
  token, both are replaced by a single character string literal preprocessing token that
@@ -9067,11 +9067,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 186 -->
 
 <h5><a name="6.10.3.3" href="#6.10.3.3">6.10.3.3 The ## operator</a></h5>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  A ## preprocessing token shall not occur at the beginning or at the end of a replacement
  list for either form of macro definition.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  If, in the replacement list of a function-like macro, a parameter is immediately preceded
  or followed by a ## preprocessing token, the parameter is replaced by the corresponding
@@ -9113,7 +9113,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 187 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note173" href="#note173">173)</a> Placemarker preprocessing tokens do not appear in the syntax because they are temporary entities that
  exist only within translation phase 4.
 </small>
@@ -9295,10 +9295,10 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 
 <h4><a name="6.10.4" href="#6.10.4">6.10.4 Line control</a></h4>
-<h6>Constraints</h6>
+<p><b>Constraints</b>
 <p><!--para 1 -->
  The string literal of a #line directive, if present, shall be a character string literal.
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 2 -->
  The line number of the current source line is one greater than the number of new-line
  characters read or introduced in translation phase 1 (<a href="#5.1.1.2">5.1.1.2</a>) while processing the source
@@ -9332,7 +9332,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 191 -->
 
 <h4><a name="6.10.5" href="#6.10.5">6.10.5 Error directive</a></h4>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 1 -->
  A preprocessing directive of the form
 <pre>
@@ -9342,7 +9342,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  sequence of preprocessing tokens.
 
 <h4><a name="6.10.6" href="#6.10.6">6.10.6 Pragma directive</a></h4>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 1 -->
  A preprocessing directive of the form
 <pre>
@@ -9373,7 +9373,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 192 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note174" href="#note174">174)</a> An implementation is not required to perform macro replacement in pragmas, but it is permitted
  except for in standard pragmas (where STDC immediately follows pragma). If the result of macro
  replacement in a non-standard pragma has the same form as a standard pragma, the behavior is still
@@ -9384,7 +9384,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h4><a name="6.10.7" href="#6.10.7">6.10.7 Null directive</a></h4>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 1 -->
  A preprocessing directive of the form
 <pre>
@@ -9406,7 +9406,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  in any standard header.
 <p><b> Forward references</b>: standard headers (<a href="#7.1.2">7.1.2</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note176" href="#note176">176)</a> See ''future language directions'' (<a href="#6.11.9">6.11.9</a>).
 </small>
 
@@ -9445,7 +9445,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
 <p><b> Forward references</b>: the asctime function (<a href="#7.26.3.1">7.26.3.1</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note177" href="#note177">177)</a> The presumed source file name and line number can be changed by the #line directive.
 </small>
 <p><small><a name="note178" href="#note178">178)</a> This macro was not specified in ISO/IEC 9899:1990 and was specified as 199409L in
@@ -9532,13 +9532,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  An implementation that defines __STDC_NO_COMPLEX__ shall not define
  __STDC_IEC_559_COMPLEX__.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note179" href="#note179">179)</a> The intention is that this will remain an integer constant of type long int that is increased with
  each revision of this International Standard.
 </small>
 
 <h4><a name="6.10.9" href="#6.10.9">6.10.9 Pragma operator</a></h4>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 1 -->
  A unary operator expression of the form:
 <pre>
@@ -9656,7 +9656,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 198 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note180" href="#note180">180)</a> The functions that make use of the decimal-point character are the numeric conversion functions
  (<a href="#7.22.1">7.22.1</a>, <a href="#7.28.4.1">7.28.4.1</a>) and the formatted input/output functions (<a href="#7.21.6">7.21.6</a>, <a href="#7.28.2">7.28.2</a>).
 </small>
@@ -9714,7 +9714,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  A summary of the contents of the standard headers is given in <a href="#B">annex B</a>.
 <p><b> Forward references</b>: diagnostics (<a href="#7.2">7.2</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note182" href="#note182">182)</a> A header is not necessarily a source file, nor are the &lt; and &gt; delimited sequences in header names
  necessarily valid source file names.
 </small>
@@ -9756,7 +9756,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 200 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note184" href="#note184">184)</a> The list of reserved identifiers with external linkage includes math_errhandling, setjmp,
  va_copy, and va_end.
 </small>
@@ -9852,7 +9852,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
 </ul>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note185" href="#note185">185)</a> This means that an implementation shall provide an actual function for each library function, even if it
  also provides a macro for that function.
 </small>
@@ -9915,13 +9915,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.2.1" href="#7.2.1">7.2.1 Program diagnostics</a></h4>
 
 <h5><a name="7.2.1.1" href="#7.2.1.1">7.2.1.1 The assert macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.2">&lt;assert.h&gt;</a>
          void assert(scalar expression);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The assert macro puts diagnostic tests into programs; it expands to a void expression.
  When it is executed, if expression (which shall have a scalar type) is false (that is,
@@ -9935,13 +9935,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
  
 <!--page 204 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The assert macro returns no value.
 <p><b> Forward references</b>: the abort function (<a href="#7.22.4.1">7.22.4.1</a>).
 <!--page 205 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note191" href="#note191">191)</a> The message written might be of the form:
  Assertion failed: expression, function abc, file xyz, line nnn.
 </small>
@@ -9997,7 +9997,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 206 -->
 <p><b> Forward references</b>: IEC 60559-compatible complex arithmetic (<a href="#G">annex G</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note192" href="#note192">192)</a> See ''future library directions'' (<a href="#7.30.1">7.30.1</a>).
 </small>
 <p><small><a name="note193" href="#note193">193)</a> The imaginary unit is a number i such that i 2 = -1.
@@ -10030,13 +10030,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  so the cut maps to the positive imaginary axis.
 
 <h4><a name="7.3.4" href="#7.3.4">7.3.4 The CX_LIMITED_RANGE pragma</a></h4>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
         #pragma STDC CX_LIMITED_RANGE on-off-switch
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The usual mathematical formulas for complex multiply, divide, and absolute value are
  problematic because of their treatment of infinities and because of undue overflow and
@@ -10054,7 +10054,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  compound statement. If this pragma is used in any other context, the behavior is
  undefined. The default state for the pragma is ''off''.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note195" href="#note195">195)</a> The purpose of the pragma is to allow the implementation to use the formulas:
 
 <pre>
@@ -10069,7 +10069,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.3.5" href="#7.3.5">7.3.5 Trigonometric functions</a></h4>
 
 <h5><a name="7.3.5.1" href="#7.3.5.1">7.3.5.1 The cacos functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10077,18 +10077,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float complex cacosf(float complex z);
          long double complex cacosl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cacos functions compute the complex arc cosine of z, with branch cuts outside the
  interval [-1, +1] along the real axis.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cacos functions return the complex arc cosine value, in the range of a strip
  mathematically unbounded along the imaginary axis and in the interval [0, pi ] along the
  real axis.
 
 <h5><a name="7.3.5.2" href="#7.3.5.2">7.3.5.2 The casin functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10096,11 +10096,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float complex casinf(float complex z);
          long double complex casinl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The casin functions compute the complex arc sine of z, with branch cuts outside the
  interval [-1, +1] along the real axis.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The casin functions return the complex arc sine value, in the range of a strip
  mathematically unbounded along the imaginary axis and in the interval [-pi /2, +pi /2]
@@ -10109,7 +10109,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  along the real axis.
 
 <h5><a name="7.3.5.3" href="#7.3.5.3">7.3.5.3 The catan functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10117,18 +10117,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float complex catanf(float complex z);
         long double complex catanl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The catan functions compute the complex arc tangent of z, with branch cuts outside the
  interval [-i, +i] along the imaginary axis.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The catan functions return the complex arc tangent value, in the range of a strip
  mathematically unbounded along the imaginary axis and in the interval [-pi /2, +pi /2]
  along the real axis.
 
 <h5><a name="7.3.5.4" href="#7.3.5.4">7.3.5.4 The ccos functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10136,15 +10136,15 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float complex ccosf(float complex z);
         long double complex ccosl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ccos functions compute the complex cosine of z.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The ccos functions return the complex cosine value.
 
 <h5><a name="7.3.5.5" href="#7.3.5.5">7.3.5.5 The csin functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10152,16 +10152,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float complex csinf(float complex z);
         long double complex csinl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The csin functions compute the complex sine of z.
 <!--page 209 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The csin functions return the complex sine value.
 
 <h5><a name="7.3.5.6" href="#7.3.5.6">7.3.5.6 The ctan functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10169,17 +10169,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float complex ctanf(float complex z);
          long double complex ctanl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ctan functions compute the complex tangent of z.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The ctan functions return the complex tangent value.
 
 <h4><a name="7.3.6" href="#7.3.6">7.3.6 Hyperbolic functions</a></h4>
 
 <h5><a name="7.3.6.1" href="#7.3.6.1">7.3.6.1 The cacosh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10187,18 +10187,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float complex cacoshf(float complex z);
          long double complex cacoshl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cacosh functions compute the complex arc hyperbolic cosine of z, with a branch
  cut at values less than 1 along the real axis.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cacosh functions return the complex arc hyperbolic cosine value, in the range of a
  half-strip of nonnegative values along the real axis and in the interval [-ipi , +ipi ] along the
  imaginary axis.
 
 <h5><a name="7.3.6.2" href="#7.3.6.2">7.3.6.2 The casinh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <!--page 210 -->
 <pre>
@@ -10207,18 +10207,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float complex casinhf(float complex z);
          long double complex casinhl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The casinh functions compute the complex arc hyperbolic sine of z, with branch cuts
  outside the interval [-i, +i] along the imaginary axis.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The casinh functions return the complex arc hyperbolic sine value, in the range of a
  strip mathematically unbounded along the real axis and in the interval [-ipi /2, +ipi /2]
  along the imaginary axis.
 
 <h5><a name="7.3.6.3" href="#7.3.6.3">7.3.6.3 The catanh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10226,18 +10226,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float complex catanhf(float complex z);
         long double complex catanhl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The catanh functions compute the complex arc hyperbolic tangent of z, with branch
  cuts outside the interval [-1, +1] along the real axis.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The catanh functions return the complex arc hyperbolic tangent value, in the range of a
  strip mathematically unbounded along the real axis and in the interval [-ipi /2, +ipi /2]
  along the imaginary axis.
 
 <h5><a name="7.3.6.4" href="#7.3.6.4">7.3.6.4 The ccosh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10245,16 +10245,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float complex ccoshf(float complex z);
         long double complex ccoshl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ccosh functions compute the complex hyperbolic cosine of z.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The ccosh functions return the complex hyperbolic cosine value.
 <!--page 211 -->
 
 <h5><a name="7.3.6.5" href="#7.3.6.5">7.3.6.5 The csinh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10262,15 +10262,15 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float complex csinhf(float complex z);
          long double complex csinhl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The csinh functions compute the complex hyperbolic sine of z.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The csinh functions return the complex hyperbolic sine value.
 
 <h5><a name="7.3.6.6" href="#7.3.6.6">7.3.6.6 The ctanh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10278,17 +10278,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float complex ctanhf(float complex z);
          long double complex ctanhl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ctanh functions compute the complex hyperbolic tangent of z.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The ctanh functions return the complex hyperbolic tangent value.
 
 <h4><a name="7.3.7" href="#7.3.7">7.3.7 Exponential and logarithmic functions</a></h4>
 
 <h5><a name="7.3.7.1" href="#7.3.7.1">7.3.7.1 The cexp functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10296,16 +10296,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float complex cexpf(float complex z);
          long double complex cexpl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cexp functions compute the complex base-e exponential of z.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cexp functions return the complex base-e exponential value.
 <!--page 212 -->
 
 <h5><a name="7.3.7.2" href="#7.3.7.2">7.3.7.2 The clog functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10313,11 +10313,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float complex clogf(float complex z);
         long double complex clogl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The clog functions compute the complex natural (base-e) logarithm of z, with a branch
  cut along the negative real axis.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The clog functions return the complex natural logarithm value, in the range of a strip
  mathematically unbounded along the real axis and in the interval [-ipi , +ipi ] along the
@@ -10326,7 +10326,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.3.8" href="#7.3.8">7.3.8 Power and absolute-value functions</a></h4>
 
 <h5><a name="7.3.8.1" href="#7.3.8.1">7.3.8.1 The cabs functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10334,16 +10334,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float cabsf(float complex z);
         long double cabsl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cabs functions compute the complex absolute value (also called norm, modulus, or
  magnitude) of z.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cabs functions return the complex absolute value.
 
 <h5><a name="7.3.8.2" href="#7.3.8.2">7.3.8.2 The cpow functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <!--page 213 -->
 <pre>
@@ -10353,16 +10353,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         long double complex cpowl(long double complex x,
              long double complex y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cpow functions compute the complex power function xy , with a branch cut for the
  first parameter along the negative real axis.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cpow functions return the complex power function value.
 
 <h5><a name="7.3.8.3" href="#7.3.8.3">7.3.8.3 The csqrt functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10370,11 +10370,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float complex csqrtf(float complex z);
          long double complex csqrtl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The csqrt functions compute the complex square root of z, with a branch cut along the
  negative real axis.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The csqrt functions return the complex square root value, in the range of the right half-
  plane (including the imaginary axis).
@@ -10382,7 +10382,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.3.9" href="#7.3.9">7.3.9 Manipulation functions</a></h4>
 
 <h5><a name="7.3.9.1" href="#7.3.9.1">7.3.9.1 The carg functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10390,17 +10390,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float cargf(float complex z);
          long double cargl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The carg functions compute the argument (also called phase angle) of z, with a branch
  cut along the negative real axis.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The carg functions return the value of the argument in the interval [-pi , +pi ].
 <!--page 214 -->
 
 <h5><a name="7.3.9.2" href="#7.3.9.2">7.3.9.2 The cimag functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10408,19 +10408,19 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float cimagf(float complex z);
         long double cimagl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cimag functions compute the imaginary part of z.<sup><a href="#note196"><b>196)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cimag functions return the imaginary part value (as a real).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note196" href="#note196">196)</a> For a variable z of complex type, z == creal(z) + cimag(z)*I.
 </small>
 
 <h5><a name="7.3.9.3" href="#7.3.9.3">7.3.9.3 The CMPLX macros</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10428,16 +10428,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float complex CMPLXF(float x, float y);
         long double complex CMPLXL(long double x, long double y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The CMPLX macros expand to an expression of the specified complex type, with the real
  part having the (converted) value of x and the imaginary part having the (converted)
  value of y.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 3 -->
  The resulting expression should be suitable for use as an initializer for an object with
  static or thread storage duration, provided both arguments are likewise suitable.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The CMPLX macros return the complex value x + i y.
 <p><!--para 5 -->
@@ -10457,7 +10457,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 215 -->
 
 <h5><a name="7.3.9.4" href="#7.3.9.4">7.3.9.4 The conj functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10465,16 +10465,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float complex conjf(float complex z);
          long double complex conjl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The conj functions compute the complex conjugate of z, by reversing the sign of its
  imaginary part.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The conj functions return the complex conjugate value.
 
 <h5><a name="7.3.9.5" href="#7.3.9.5">7.3.9.5 The cproj functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10482,7 +10482,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float complex cprojf(float complex z);
          long double complex cprojl(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cproj functions compute a projection of z onto the Riemann sphere: z projects to
  z except that all complex infinities (even those with one infinite part and one NaN part)
@@ -10491,12 +10491,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <pre>
          INFINITY + I * copysign(0.0, cimag(z))
 </pre>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cproj functions return the value of the projection onto the Riemann sphere.
 
 <h5><a name="7.3.9.6" href="#7.3.9.6">7.3.9.6 The creal functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.3">&lt;complex.h&gt;</a>
@@ -10504,11 +10504,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float crealf(float complex z);
          long double creall(long double complex z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The creal functions compute the real part of z.<sup><a href="#note197"><b>197)</b></a></sup>
 <!--page 216 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The creal functions return the real part value.
  
@@ -10517,7 +10517,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 217 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note197" href="#note197">197)</a> For a variable z of complex type, z == creal(z) + cimag(z)*I.
 </small>
 
@@ -10537,7 +10537,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  characters.<sup><a href="#note199"><b>199)</b></a></sup> All letters and digits are printing characters.
 <p><b> Forward references</b>: EOF (<a href="#7.21.1">7.21.1</a>), localization (<a href="#7.11">7.11</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note198" href="#note198">198)</a> See ''future library directions'' (<a href="#7.30.2">7.30.2</a>).
 </small>
 <p><small><a name="note199" href="#note199">199)</a> In an implementation that uses the seven-bit US ASCII character set, the printing characters are those
@@ -10551,24 +10551,24 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  argument c conforms to that in the description of the function.
 
 <h5><a name="7.4.1.1" href="#7.4.1.1">7.4.1.1 The isalnum function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.4">&lt;ctype.h&gt;</a>
           int isalnum(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isalnum function tests for any character for which isalpha or isdigit is true.
 
 <h5><a name="7.4.1.2" href="#7.4.1.2">7.4.1.2 The isalpha function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.4">&lt;ctype.h&gt;</a>
           int isalpha(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isalpha function tests for any character for which isupper or islower is true,
  or any character that is one of a locale-specific set of alphabetic characters for which
@@ -10579,19 +10579,19 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  none of iscntrl, isdigit, ispunct, or isspace is true.<sup><a href="#note200"><b>200)</b></a></sup> In the "C" locale,
  isalpha returns true only for the characters for which isupper or islower is true.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note200" href="#note200">200)</a> The functions islower and isupper test true or false separately for each of these additional
  characters; all four combinations are possible.
 </small>
 
 <h5><a name="7.4.1.3" href="#7.4.1.3">7.4.1.3 The isblank function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.4">&lt;ctype.h&gt;</a>
          int isblank(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isblank function tests for any character that is a standard blank character or is one
  of a locale-specific set of characters for which isspace is true and that is used to
@@ -10600,29 +10600,29 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  for the standard blank characters.
 
 <h5><a name="7.4.1.4" href="#7.4.1.4">7.4.1.4 The iscntrl function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.4">&lt;ctype.h&gt;</a>
          int iscntrl(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iscntrl function tests for any control character.
 
 <h5><a name="7.4.1.5" href="#7.4.1.5">7.4.1.5 The isdigit function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.4">&lt;ctype.h&gt;</a>
          int isdigit(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isdigit function tests for any decimal-digit character (as defined in <a href="#5.2.1">5.2.1</a>).
 
 <h5><a name="7.4.1.6" href="#7.4.1.6">7.4.1.6 The isgraph function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.4">&lt;ctype.h&gt;</a>
@@ -10633,18 +10633,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
  
 <!--page 219 -->
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isgraph function tests for any printing character except space (' ').
 
 <h5><a name="7.4.1.7" href="#7.4.1.7">7.4.1.7 The islower function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.4">&lt;ctype.h&gt;</a>
          int islower(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The islower function tests for any character that is a lowercase letter or is one of a
  locale-specific set of characters for which none of iscntrl, isdigit, ispunct, or
@@ -10652,24 +10652,24 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  letters (as defined in <a href="#5.2.1">5.2.1</a>).
 
 <h5><a name="7.4.1.8" href="#7.4.1.8">7.4.1.8 The isprint function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.4">&lt;ctype.h&gt;</a>
          int isprint(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isprint function tests for any printing character including space (' ').
 
 <h5><a name="7.4.1.9" href="#7.4.1.9">7.4.1.9 The ispunct function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.4">&lt;ctype.h&gt;</a>
          int ispunct(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ispunct function tests for any printing character that is one of a locale-specific set
  of punctuation characters for which neither isspace nor isalnum is true. In the "C"
@@ -10677,13 +10677,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  nor isalnum is true.
 
 <h5><a name="7.4.1.10" href="#7.4.1.10">7.4.1.10 The isspace function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.4">&lt;ctype.h&gt;</a>
          int isspace(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isspace function tests for any character that is a standard white-space character or
  is one of a locale-specific set of characters for which isalnum is false. The standard
@@ -10693,13 +10693,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  "C" locale, isspace returns true only for the standard white-space characters.
 
 <h5><a name="7.4.1.11" href="#7.4.1.11">7.4.1.11 The isupper function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.4">&lt;ctype.h&gt;</a>
         int isupper(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isupper function tests for any character that is an uppercase letter or is one of a
  locale-specific set of characters for which none of iscntrl, isdigit, ispunct, or
@@ -10707,29 +10707,29 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  letters (as defined in <a href="#5.2.1">5.2.1</a>).
 
 <h5><a name="7.4.1.12" href="#7.4.1.12">7.4.1.12 The isxdigit function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.4">&lt;ctype.h&gt;</a>
         int isxdigit(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isxdigit function tests for any hexadecimal-digit character (as defined in <a href="#6.4.4.1">6.4.4.1</a>).
 
 <h4><a name="7.4.2" href="#7.4.2">7.4.2 Character case mapping functions</a></h4>
 
 <h5><a name="7.4.2.1" href="#7.4.2.1">7.4.2.1 The tolower function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.4">&lt;ctype.h&gt;</a>
         int tolower(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The tolower function converts an uppercase letter to a corresponding lowercase letter.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If the argument is a character for which isupper is true and there are one or more
  corresponding characters, as specified by the current locale, for which islower is true,
@@ -10738,16 +10738,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 221 -->
 
 <h5><a name="7.4.2.2" href="#7.4.2.2">7.4.2.2 The toupper function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.4">&lt;ctype.h&gt;</a>
          int toupper(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The toupper function converts a lowercase letter to a corresponding uppercase letter.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If the argument is a character for which islower is true and there are one or more
  corresponding characters, as specified by the current locale, for which isupper is true,
@@ -10790,7 +10790,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 223 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note201" href="#note201">201)</a> The macro errno need not be the identifier of an object. It might expand to a modifiable lvalue
  resulting from a function call (for example, *errno()).
 </small>
@@ -10900,7 +10900,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  FE_ and an uppercase letter, and having type ''pointer to const-qualified fenv_t'', may
  also be specified by the implementation.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note204" href="#note204">204)</a> This header is designed to support the floating-point exception status flags and directed-rounding
  control modes required by IEC 60559, and other similar floating-point state information. It is also
  designed to facilitate code portability among all systems.
@@ -10922,13 +10922,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h4><a name="7.6.1" href="#7.6.1">7.6.1 The FENV_ACCESS pragma</a></h4>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.6">&lt;fenv.h&gt;</a>
           #pragma STDC FENV_ACCESS on-off-switch
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The FENV_ACCESS pragma provides a means to inform the implementation when a
  program might access the floating-point environment to test floating-point status flags or
@@ -10974,7 +10974,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  contain an appropriately placed invocation of #pragma STDC FENV_ACCESS ON.<sup><a href="#note211"><b>211)</b></a></sup>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note210" href="#note210">210)</a> The purpose of the FENV_ACCESS pragma is to allow certain optimizations that could subvert flag
  tests and mode changes (e.g., global common subexpression elimination, code motion, and constant
  folding). In general, if the state of FENV_ACCESS is ''off'', the translator can assume that default
@@ -10993,7 +10993,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  FE_OVERFLOW | FE_INEXACT. For other argument values the behavior of these
  functions is undefined.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note212" href="#note212">212)</a> The functions fetestexcept, feraiseexcept, and feclearexcept support the basic
  abstraction of flags that are either set or clear. An implementation may endow floating-point status
  flags with more information -- for example, the address of the code which first raised the floating-
@@ -11002,17 +11002,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="7.6.2.1" href="#7.6.2.1">7.6.2.1 The feclearexcept function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.6">&lt;fenv.h&gt;</a>
          int feclearexcept(int excepts);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The feclearexcept function attempts to clear the supported floating-point exceptions
  represented by its argument.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The feclearexcept function returns zero if the excepts argument is zero or if all
  the specified exceptions were successfully cleared. Otherwise, it returns a nonzero value.
@@ -11021,38 +11021,38 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 227 -->
 
 <h5><a name="7.6.2.2" href="#7.6.2.2">7.6.2.2 The fegetexceptflag function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.6">&lt;fenv.h&gt;</a>
           int fegetexceptflag(fexcept_t *flagp,
                int excepts);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fegetexceptflag function attempts to store an implementation-defined
  representation of the states of the floating-point status flags indicated by the argument
  excepts in the object pointed to by the argument flagp.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fegetexceptflag function returns zero if the representation was successfully
  stored. Otherwise, it returns a nonzero value.
 
 <h5><a name="7.6.2.3" href="#7.6.2.3">7.6.2.3 The feraiseexcept function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.6">&lt;fenv.h&gt;</a>
           int feraiseexcept(int excepts);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The feraiseexcept function attempts to raise the supported floating-point exceptions
  represented by its argument.<sup><a href="#note213"><b>213)</b></a></sup> The order in which these floating-point exceptions are
  raised is unspecified, except as stated in <a href="#F.8.6">F.8.6</a>. Whether the feraiseexcept function
  additionally raises the ''inexact'' floating-point exception whenever it raises the
  ''overflow'' or ''underflow'' floating-point exception is implementation-defined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The feraiseexcept function returns zero if the excepts argument is zero or if all
  the specified exceptions were successfully raised. Otherwise, it returns a nonzero value.
@@ -11062,21 +11062,21 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 228 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note213" href="#note213">213)</a> The effect is intended to be similar to that of floating-point exceptions raised by arithmetic operations.
  Hence, enabled traps for floating-point exceptions raised by this function are taken. The specification
  in <a href="#F.8.6">F.8.6</a> is in the same spirit.
 </small>
 
 <h5><a name="7.6.2.4" href="#7.6.2.4">7.6.2.4 The fesetexceptflag function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.6">&lt;fenv.h&gt;</a>
          int fesetexceptflag(const fexcept_t *flagp,
               int excepts);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fesetexceptflag function attempts to set the floating-point status flags
  indicated by the argument excepts to the states stored in the object pointed to by
@@ -11084,25 +11084,25 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  fegetexceptflag whose second argument represented at least those floating-point
  exceptions represented by the argument excepts. This function does not raise floating-
  point exceptions, but only sets the state of the flags.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fesetexceptflag function returns zero if the excepts argument is zero or if
  all the specified flags were successfully set to the appropriate state. Otherwise, it returns
  a nonzero value.
 
 <h5><a name="7.6.2.5" href="#7.6.2.5">7.6.2.5 The fetestexcept function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.6">&lt;fenv.h&gt;</a>
          int fetestexcept(int excepts);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fetestexcept function determines which of a specified subset of the floating-
  point exception flags are currently set. The excepts argument specifies the floating-
  point status flags to be queried.<sup><a href="#note214"><b>214)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fetestexcept function returns the value of the bitwise OR of the floating-point
  exception macros corresponding to the currently set floating-point exceptions included in
@@ -11130,7 +11130,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note214" href="#note214">214)</a> This mechanism allows testing several floating-point exceptions with just one function call.
 </small>
 
@@ -11140,34 +11140,34 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  modes.
 
 <h5><a name="7.6.3.1" href="#7.6.3.1">7.6.3.1 The fegetround function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.6">&lt;fenv.h&gt;</a>
          int fegetround(void);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fegetround function gets the current rounding direction.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fegetround function returns the value of the rounding direction macro
  representing the current rounding direction or a negative value if there is no such
  rounding direction macro or the current rounding direction is not determinable.
 
 <h5><a name="7.6.3.2" href="#7.6.3.2">7.6.3.2 The fesetround function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.6">&lt;fenv.h&gt;</a>
          int fesetround(int round);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fesetround function establishes the rounding direction represented by its
  argument round. If the argument is not equal to the value of a rounding direction macro,
  the rounding direction is not changed.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fesetround function returns zero if and only if the requested rounding direction
  was established.
@@ -11199,41 +11199,41 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  control modes -- as one entity.
 
 <h5><a name="7.6.4.1" href="#7.6.4.1">7.6.4.1 The fegetenv function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.6">&lt;fenv.h&gt;</a>
         int fegetenv(fenv_t *envp);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fegetenv function attempts to store the current floating-point environment in the
  object pointed to by envp.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fegetenv function returns zero if the environment was successfully stored.
  Otherwise, it returns a nonzero value.
 
 <h5><a name="7.6.4.2" href="#7.6.4.2">7.6.4.2 The feholdexcept function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.6">&lt;fenv.h&gt;</a>
         int feholdexcept(fenv_t *envp);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The feholdexcept function saves the current floating-point environment in the object
  pointed to by envp, clears the floating-point status flags, and then installs a non-stop
  (continue on floating-point exceptions) mode, if available, for all floating-point
  exceptions.<sup><a href="#note215"><b>215)</b></a></sup>
 <!--page 231 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The feholdexcept function returns zero if and only if non-stop floating-point
  exception handling was successfully installed.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note215" href="#note215">215)</a> IEC 60559 systems have a default non-stop mode, and typically at least one other mode for trap
  handling or aborting; if the system provides only the non-stop mode then installing it is trivial. For
  such systems, the feholdexcept function can be used in conjunction with the feupdateenv
@@ -11241,39 +11241,39 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="7.6.4.3" href="#7.6.4.3">7.6.4.3 The fesetenv function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.6">&lt;fenv.h&gt;</a>
          int fesetenv(const fenv_t *envp);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fesetenv function attempts to establish the floating-point environment represented
  by the object pointed to by envp. The argument envp shall point to an object set by a
  call to fegetenv or feholdexcept, or equal a floating-point environment macro.
  Note that fesetenv merely installs the state of the floating-point status flags
  represented through its argument, and does not raise these floating-point exceptions.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fesetenv function returns zero if the environment was successfully established.
  Otherwise, it returns a nonzero value.
 
 <h5><a name="7.6.4.4" href="#7.6.4.4">7.6.4.4 The feupdateenv function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.6">&lt;fenv.h&gt;</a>
          int feupdateenv(const fenv_t *envp);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The feupdateenv function attempts to save the currently raised floating-point
  exceptions in its automatic storage, install the floating-point environment represented by
  the object pointed to by envp, and then raise the saved floating-point exceptions. The
  argument envp shall point to an object set by a call to feholdexcept or fegetenv,
  or equal a floating-point environment macro.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The feupdateenv function returns zero if all the actions were successfully carried out.
  Otherwise, it returns a nonzero value.
@@ -11329,7 +11329,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: integer types <a href="#7.20">&lt;stdint.h&gt;</a> (<a href="#7.20">7.20</a>), formatted input/output
  functions (<a href="#7.21.6">7.21.6</a>), formatted wide character input/output functions (<a href="#7.28.2">7.28.2</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note216" href="#note216">216)</a> See ''future library directions'' (<a href="#7.30.4">7.30.4</a>).
 </small>
 
@@ -11395,7 +11395,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note217" href="#note217">217)</a> Separate macros are given for use with fprintf and fscanf functions because, in the general case,
  different format specifiers may be required for fprintf and fscanf, even when the type is the
  same.
@@ -11404,17 +11404,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.8.2" href="#7.8.2">7.8.2 Functions for greatest-width integer types</a></h4>
 
 <h5><a name="7.8.2.1" href="#7.8.2.1">7.8.2.1 The imaxabs function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.8">&lt;inttypes.h&gt;</a>
          intmax_t imaxabs(intmax_t j);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The imaxabs function computes the absolute value of an integer j. If the result cannot
  be represented, the behavior is undefined.<sup><a href="#note218"><b>218)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The imaxabs function returns the absolute value.
  
@@ -11423,22 +11423,22 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 236 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note218" href="#note218">218)</a> The absolute value of the most negative number cannot be represented in two's complement.
 </small>
 
 <h5><a name="7.8.2.2" href="#7.8.2.2">7.8.2.2 The imaxdiv function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.8">&lt;inttypes.h&gt;</a>
         imaxdiv_t imaxdiv(intmax_t numer, intmax_t denom);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The imaxdiv function computes numer / denom and numer % denom in a single
  operation.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The imaxdiv function returns a structure of type imaxdiv_t comprising both the
  quotient and the remainder. The structure shall contain (in either order) the members
@@ -11446,7 +11446,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  either part of the result cannot be represented, the behavior is undefined.
 
 <h5><a name="7.8.2.3" href="#7.8.2.3">7.8.2.3 The strtoimax and strtoumax functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.8">&lt;inttypes.h&gt;</a>
@@ -11455,12 +11455,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         uintmax_t strtoumax(const char * restrict nptr,
              char ** restrict endptr, int base);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strtoimax and strtoumax functions are equivalent to the strtol, strtoll,
  strtoul, and strtoull functions, except that the initial portion of the string is
  converted to intmax_t and uintmax_t representation, respectively.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strtoimax and strtoumax functions return the converted value, if any. If no
  conversion could be performed, zero is returned. If the correct value is outside the range
@@ -11472,7 +11472,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 237 -->
 
 <h5><a name="7.8.2.4" href="#7.8.2.4">7.8.2.4 The wcstoimax and wcstoumax functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.19">&lt;stddef.h&gt;</a>           // for wchar_t
@@ -11482,12 +11482,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          uintmax_t wcstoumax(const wchar_t * restrict nptr,
               wchar_t ** restrict endptr, int base);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcstoimax and wcstoumax functions are equivalent to the wcstol, wcstoll,
  wcstoul, and wcstoull functions except that the initial portion of the wide string is
  converted to intmax_t and uintmax_t representation, respectively.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcstoimax function returns the converted value, if any. If no conversion could be
  performed, zero is returned. If the correct value is outside the range of representable
@@ -11580,7 +11580,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  with the characters LC_ and an uppercase letter,<sup><a href="#note220"><b>220)</b></a></sup> may also be specified by the
  implementation.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note219" href="#note219">219)</a> ISO/IEC 9945-2 specifies locale and charmap formats that may be used to specify locales for C.
 </small>
 <p><small><a name="note220" href="#note220">220)</a> See ''future library directions'' (<a href="#7.30.5">7.30.5</a>).
@@ -11589,13 +11589,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.11.1" href="#7.11.1">7.11.1 Locale control</a></h4>
 
 <h5><a name="7.11.1.1" href="#7.11.1.1">7.11.1.1 The setlocale function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.11">&lt;locale.h&gt;</a>
           char *setlocale(int category, const char *locale);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The setlocale function selects the appropriate portion of the program's locale as
  specified by the category and locale arguments. The setlocale function may be
@@ -11625,7 +11625,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  A call to the setlocale function may introduce a data race with other calls to the
  setlocale function or with calls to functions that are affected by the current locale.
  The implementation shall behave as if no library function calls the setlocale function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  If a pointer to a string is given for locale and the selection can be honored, the
  setlocale function returns a pointer to the string associated with the specified
@@ -11645,7 +11645,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  (<a href="#7.22.8">7.22.8</a>), numeric conversion functions (<a href="#7.22.1">7.22.1</a>), the strcoll function (<a href="#7.23.4.3">7.23.4.3</a>), the
  strftime function (<a href="#7.26.3.5">7.26.3.5</a>), the strxfrm function (<a href="#7.23.4.5">7.23.4.5</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note221" href="#note221">221)</a> The only functions in <a href="#7.4">7.4</a> whose behavior is not affected by the current locale are isdigit and
  isxdigit.
 </small>
@@ -11656,13 +11656,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.11.2" href="#7.11.2">7.11.2 Numeric formatting convention inquiry</a></h4>
 
 <h5><a name="7.11.2.1" href="#7.11.2.1">7.11.2.1 The localeconv function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.11">&lt;locale.h&gt;</a>
          struct lconv *localeconv(void);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The localeconv function sets the components of an object with type struct lconv
  with values appropriate for the formatting of numeric quantities (monetary and otherwise)
@@ -11844,7 +11844,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 7 -->
  The implementation shall behave as if no library function calls the localeconv
  function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 8 -->
  The localeconv function returns a pointer to the filled-in object. The structure
  pointed to by the return value shall not be modified by the program, but may be
@@ -12029,7 +12029,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  shall define the macros FE_DIVBYZERO, FE_INVALID, and FE_OVERFLOW in
  <a href="#7.6">&lt;fenv.h&gt;</a>.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note223" href="#note223">223)</a> Particularly on systems with wide expression evaluation, a <a href="#7.12">&lt;math.h&gt;</a> function might pass arguments
  and return values in wider format than the synopsis prototype indicates.
 </small>
@@ -12110,7 +12110,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 252 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note228" href="#note228">228)</a> In an implementation that supports infinities, this allows an infinity as an argument to be a domain
  error if the mathematical domain of the function does not include the infinity.
 </small>
@@ -12121,13 +12121,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h4><a name="7.12.2" href="#7.12.2">7.12.2 The FP_CONTRACT pragma</a></h4>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.12">&lt;math.h&gt;</a>
           #pragma STDC FP_CONTRACT on-off-switch
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The FP_CONTRACT pragma can be used to allow (if the state is ''on'') or disallow (if the
  state is ''off'') the implementation to contract expressions (<a href="#6.5">6.5</a>). Each pragma can occur
@@ -12148,19 +12148,19 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  expression of real floating type.
 
 <h5><a name="7.12.3.1" href="#7.12.3.1">7.12.3.1 The fpclassify macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.12">&lt;math.h&gt;</a>
           int fpclassify(real-floating x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fpclassify macro classifies its argument value as NaN, infinite, normal,
  subnormal, zero, or into another implementation-defined category. First, an argument
  represented in a format wider than its semantic type is converted to its semantic type.
  Then classification is based on the type of the argument.<sup><a href="#note231"><b>231)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fpclassify macro returns the value of the number classification macro
  appropriate to the value of its argument.                                *
@@ -12168,55 +12168,55 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 253 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note231" href="#note231">231)</a> Since an expression can be evaluated with more range and precision than its type has, it is important to
  know the type that classification is based on. For example, a normal long double value might
  become subnormal when converted to double, and zero when converted to float.
 </small>
 
 <h5><a name="7.12.3.2" href="#7.12.3.2">7.12.3.2 The isfinite macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
          int isfinite(real-floating x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isfinite macro determines whether its argument has a finite value (zero,
  subnormal, or normal, and not infinite or NaN). First, an argument represented in a
  format wider than its semantic type is converted to its semantic type. Then determination
  is based on the type of the argument.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The isfinite macro returns a nonzero value if and only if its argument has a finite
  value.
 
 <h5><a name="7.12.3.3" href="#7.12.3.3">7.12.3.3 The isinf macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
          int isinf(real-floating x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isinf macro determines whether its argument value is an infinity (positive or
  negative). First, an argument represented in a format wider than its semantic type is
  converted to its semantic type. Then determination is based on the type of the argument.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The isinf macro returns a nonzero value if and only if its argument has an infinite
  value.
 
 <h5><a name="7.12.3.4" href="#7.12.3.4">7.12.3.4 The isnan macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
          int isnan(real-floating x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isnan macro determines whether its argument value is a NaN. First, an argument
  represented in a format wider than its semantic type is converted to its semantic type.
@@ -12224,44 +12224,44 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
  
 <!--page 254 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The isnan macro returns a nonzero value if and only if its argument has a NaN value.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note232" href="#note232">232)</a> For the isnan macro, the type for determination does not matter unless the implementation supports
  NaNs in the evaluation type but not in the semantic type.
 </small>
 
 <h5><a name="7.12.3.5" href="#7.12.3.5">7.12.3.5 The isnormal macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
          int isnormal(real-floating x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isnormal macro determines whether its argument value is normal (neither zero,
  subnormal, infinite, nor NaN). First, an argument represented in a format wider than its
  semantic type is converted to its semantic type. Then determination is based on the type
  of the argument.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The isnormal macro returns a nonzero value if and only if its argument has a normal
  value.
 
 <h5><a name="7.12.3.6" href="#7.12.3.6">7.12.3.6 The signbit macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
          int signbit(real-floating x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The signbit macro determines whether the sign of its argument value is negative.<sup><a href="#note233"><b>233)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The signbit macro returns a nonzero value if and only if the sign of its argument value
  is negative.
@@ -12271,7 +12271,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 255 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note233" href="#note233">233)</a> The signbit macro reports the sign of all values, including infinities, zeros, and NaNs. If zero is
  unsigned, it is treated as positive.
 </small>
@@ -12279,7 +12279,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.12.4" href="#7.12.4">7.12.4 Trigonometric functions</a></h4>
 
 <h5><a name="7.12.4.1" href="#7.12.4.1">7.12.4.1 The acos functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12287,16 +12287,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float acosf(float x);
          long double acosl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The acos functions compute the principal value of the arc cosine of x. A domain error
  occurs for arguments not in the interval [-1, +1].
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The acos functions return arccos x in the interval [0, pi ] radians.
 
 <h5><a name="7.12.4.2" href="#7.12.4.2">7.12.4.2 The asin functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12304,16 +12304,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float asinf(float x);
          long double asinl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The asin functions compute the principal value of the arc sine of x. A domain error
  occurs for arguments not in the interval [-1, +1].
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The asin functions return arcsin x in the interval [-pi /2, +pi /2] radians.
 
 <h5><a name="7.12.4.3" href="#7.12.4.3">7.12.4.3 The atan functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12321,16 +12321,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float atanf(float x);
          long double atanl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The atan functions compute the principal value of the arc tangent of x.
 <!--page 256 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The atan functions return arctan x in the interval [-pi /2, +pi /2] radians.
 
 <h5><a name="7.12.4.4" href="#7.12.4.4">7.12.4.4 The atan2 functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12338,17 +12338,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float atan2f(float y, float x);
         long double atan2l(long double y, long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The atan2 functions compute the value of the arc tangent of y/x, using the signs of both
  arguments to determine the quadrant of the return value. A domain error may occur if
  both arguments are zero.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The atan2 functions return arctan y/x in the interval [-pi , +pi ] radians.
 
 <h5><a name="7.12.4.5" href="#7.12.4.5">7.12.4.5 The cos functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12356,15 +12356,15 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float cosf(float x);
         long double cosl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cos functions compute the cosine of x (measured in radians).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cos functions return cos x.
 
 <h5><a name="7.12.4.6" href="#7.12.4.6">7.12.4.6 The sin functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12372,16 +12372,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float sinf(float x);
         long double sinl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The sin functions compute the sine of x (measured in radians).
 <!--page 257 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The sin functions return sin x.
 
 <h5><a name="7.12.4.7" href="#7.12.4.7">7.12.4.7 The tan functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12389,17 +12389,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float tanf(float x);
          long double tanl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The tan functions return the tangent of x (measured in radians).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The tan functions return tan x.
 
 <h4><a name="7.12.5" href="#7.12.5">7.12.5 Hyperbolic functions</a></h4>
 
 <h5><a name="7.12.5.1" href="#7.12.5.1">7.12.5.1 The acosh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12407,16 +12407,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float acoshf(float x);
          long double acoshl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The acosh functions compute the (nonnegative) arc hyperbolic cosine of x. A domain
  error occurs for arguments less than 1.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The acosh functions return arcosh x in the interval [0, +(inf)].
 
 <h5><a name="7.12.5.2" href="#7.12.5.2">7.12.5.2 The asinh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12424,16 +12424,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float asinhf(float x);
          long double asinhl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The asinh functions compute the arc hyperbolic sine of x.
 <!--page 258 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The asinh functions return arsinh x.
 
 <h5><a name="7.12.5.3" href="#7.12.5.3">7.12.5.3 The atanh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12441,17 +12441,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float atanhf(float x);
         long double atanhl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The atanh functions compute the arc hyperbolic tangent of x. A domain error occurs
  for arguments not in the interval [-1, +1]. A pole error may occur if the argument equals
  -1 or +1.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The atanh functions return artanh x.
 
 <h5><a name="7.12.5.4" href="#7.12.5.4">7.12.5.4 The cosh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12459,16 +12459,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float coshf(float x);
         long double coshl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cosh functions compute the hyperbolic cosine of x. A range error occurs if the
  magnitude of x is too large.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cosh functions return cosh x.
 
 <h5><a name="7.12.5.5" href="#7.12.5.5">7.12.5.5 The sinh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12476,17 +12476,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float sinhf(float x);
         long double sinhl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The sinh functions compute the hyperbolic sine of x. A range error occurs if the
  magnitude of x is too large.
 <!--page 259 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The sinh functions return sinh x.
 
 <h5><a name="7.12.5.6" href="#7.12.5.6">7.12.5.6 The tanh functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12494,17 +12494,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float tanhf(float x);
          long double tanhl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The tanh functions compute the hyperbolic tangent of x.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The tanh functions return tanh x.
 
 <h4><a name="7.12.6" href="#7.12.6">7.12.6 Exponential and logarithmic functions</a></h4>
 
 <h5><a name="7.12.6.1" href="#7.12.6.1">7.12.6.1 The exp functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12512,16 +12512,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float expf(float x);
          long double expl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The exp functions compute the base-e exponential of x. A range error occurs if the
  magnitude of x is too large.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The exp functions return ex .
 
 <h5><a name="7.12.6.2" href="#7.12.6.2">7.12.6.2 The exp2 functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12529,17 +12529,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float exp2f(float x);
          long double exp2l(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The exp2 functions compute the base-2 exponential of x. A range error occurs if the
  magnitude of x is too large.
 <!--page 260 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The exp2 functions return 2x .
 
 <h5><a name="7.12.6.3" href="#7.12.6.3">7.12.6.3 The expm1 functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12547,20 +12547,20 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float expm1f(float x);
          long double expm1l(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The expm1 functions compute the base-e exponential of the argument, minus 1. A range
  error occurs if x is too large.<sup><a href="#note234"><b>234)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The expm1 functions return ex - 1.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note234" href="#note234">234)</a> For small magnitude x, expm1(x) is expected to be more accurate than exp(x) - 1.
 </small>
 
 <h5><a name="7.12.6.4" href="#7.12.6.4">7.12.6.4 The frexp functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12568,11 +12568,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float frexpf(float value, int *exp);
          long double frexpl(long double value, int *exp);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The frexp functions break a floating-point number into a normalized fraction and an
  integral power of 2. They store the integer in the int object pointed to by exp.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If value is not a floating-point number or if the integral power of 2 is outside the range
  of int, the results are unspecified. Otherwise, the frexp functions return the value x,
@@ -12585,7 +12585,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 261 -->
 
 <h5><a name="7.12.6.5" href="#7.12.6.5">7.12.6.5 The ilogb functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12593,7 +12593,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          int ilogbf(float x);
          int ilogbl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ilogb functions extract the exponent of x as a signed int value. If x is zero they
  compute the value FP_ILOGB0; if x is infinite they compute the value INT_MAX; if x is
@@ -12601,13 +12601,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  the corresponding logb function and casting the returned value to type int. A domain
  error or range error may occur if x is zero, infinite, or NaN. If the correct value is outside
  the range of the return type, the numeric result is unspecified.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The ilogb functions return the exponent of x as a signed int value.
 <p><b> Forward references</b>: the logb functions (<a href="#7.12.6.11">7.12.6.11</a>).
 
 <h5><a name="7.12.6.6" href="#7.12.6.6">7.12.6.6 The ldexp functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12615,16 +12615,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float ldexpf(float x, int exp);
          long double ldexpl(long double x, int exp);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ldexp functions multiply a floating-point number by an integral power of 2. A
  range error may occur.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The ldexp functions return x x 2exp .
 
 <h5><a name="7.12.6.7" href="#7.12.6.7">7.12.6.7 The log functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <!--page 262 -->
 <pre>
@@ -12633,16 +12633,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float logf(float x);
          long double logl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The log functions compute the base-e (natural) logarithm of x. A domain error occurs if
  the argument is negative. A pole error may occur if the argument is zero.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The log functions return loge x.
 
 <h5><a name="7.12.6.8" href="#7.12.6.8">7.12.6.8 The log10 functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12650,16 +12650,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float log10f(float x);
          long double log10l(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The log10 functions compute the base-10 (common) logarithm of x. A domain error
  occurs if the argument is negative. A pole error may occur if the argument is zero.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The log10 functions return log10 x.
 
 <h5><a name="7.12.6.9" href="#7.12.6.9">7.12.6.9 The log1p functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12667,12 +12667,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float log1pf(float x);
          long double log1pl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The log1p functions compute the base-e (natural) logarithm of 1 plus the argument.<sup><a href="#note235"><b>235)</b></a></sup>
  A domain error occurs if the argument is less than -1. A pole error may occur if the
  argument equals -1.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The log1p functions return loge (1 + x).
  
@@ -12681,12 +12681,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 263 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note235" href="#note235">235)</a> For small magnitude x, log1p(x) is expected to be more accurate than log(1 + x).
 </small>
 
 <h5><a name="7.12.6.10" href="#7.12.6.10">7.12.6.10 The log2 functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12694,16 +12694,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float log2f(float x);
          long double log2l(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The log2 functions compute the base-2 logarithm of x. A domain error occurs if the
  argument is less than zero. A pole error may occur if the argument is zero.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The log2 functions return log2 x.
 
 <h5><a name="7.12.6.11" href="#7.12.6.11">7.12.6.11 The logb functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12711,7 +12711,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float logbf(float x);
          long double logbl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The logb functions extract the exponent of x, as a signed integer value in floating-point
  format. If x is subnormal it is treated as though it were normalized; thus, for positive
@@ -12720,12 +12720,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
        1 &lt;= x x FLT_RADIX-logb(x) &lt; FLT_RADIX
 </pre>
  A domain error or pole error may occur if the argument is zero.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The logb functions return the signed exponent of x.
 
 <h5><a name="7.12.6.12" href="#7.12.6.12">7.12.6.12 The modf functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12733,18 +12733,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float modff(float value, float *iptr);
          long double modfl(long double value, long double *iptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The modf functions break the argument value into integral and fractional parts, each of
  which has the same type and sign as the argument. They store the integral part (in
 <!--page 264 -->
  floating-point format) in the object pointed to by iptr.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The modf functions return the signed fractional part of value.
 
 <h5><a name="7.12.6.13" href="#7.12.6.13">7.12.6.13 The scalbn and scalbln functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12755,18 +12755,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float scalblnf(float x, long int n);
         long double scalblnl(long double x, long int n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The scalbn and scalbln functions compute x x FLT_RADIXn efficiently, not
  normally by computing FLT_RADIXn explicitly. A range error may occur.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The scalbn and scalbln functions return x x FLT_RADIXn .
 
 <h4><a name="7.12.7" href="#7.12.7">7.12.7 Power and absolute-value functions</a></h4>
 
 <h5><a name="7.12.7.1" href="#7.12.7.1">7.12.7.1 The cbrt functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12774,16 +12774,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float cbrtf(float x);
         long double cbrtl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cbrt functions compute the real cube root of x.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cbrt functions return x1/3 .
 <!--page 265 -->
 
 <h5><a name="7.12.7.2" href="#7.12.7.2">7.12.7.2 The fabs functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12791,15 +12791,15 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float fabsf(float x);
          long double fabsl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fabs functions compute the absolute value of a floating-point number x.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fabs functions return | x |.
 
 <h5><a name="7.12.7.3" href="#7.12.7.3">7.12.7.3 The hypot functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12807,12 +12807,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float hypotf(float x, float y);
          long double hypotl(long double x, long double y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The hypot functions compute the square root of the sum of the squares of x and y,
  without undue overflow or underflow. A range error may occur.
 <p><!--para 3 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The hypot functions return (sqrt)x2 + y2 .
 <pre>
@@ -12821,7 +12821,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
 
 <h5><a name="7.12.7.4" href="#7.12.7.4">7.12.7.4 The pow functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12829,19 +12829,19 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float powf(float x, float y);
          long double powl(long double x, long double y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The pow functions compute x raised to the power y. A domain error occurs if x is finite
  and negative and y is finite and not an integer value. A range error may occur. A domain
  error may occur if x is zero and y is zero. A domain error or pole error may occur if x is
  zero and y is less than zero.
 <!--page 266 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The pow functions return xy .
 
 <h5><a name="7.12.7.5" href="#7.12.7.5">7.12.7.5 The sqrt functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12849,11 +12849,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float sqrtf(float x);
         long double sqrtl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The sqrt functions compute the nonnegative square root of x. A domain error occurs if
  the argument is less than zero.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The sqrt functions return (sqrt)x.
 <pre>
@@ -12864,7 +12864,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.12.8" href="#7.12.8">7.12.8 Error and gamma functions</a></h4>
 
 <h5><a name="7.12.8.1" href="#7.12.8.1">7.12.8.1 The erf functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12872,10 +12872,10 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float erff(float x);
         long double erfl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The erf functions compute the error function of x.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
 <pre>
                                     2        x
@@ -12891,7 +12891,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 
 <h5><a name="7.12.8.2" href="#7.12.8.2">7.12.8.2 The erfc functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12899,12 +12899,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float erfcf(float x);
         long double erfcl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The erfc functions compute the complementary error function of x. A range error
  occurs if x is too large.
 <!--page 267 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
 <pre>
                                                      2       (inf)
@@ -12920,7 +12920,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 
 <h5><a name="7.12.8.3" href="#7.12.8.3">7.12.8.3 The lgamma functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12928,17 +12928,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float lgammaf(float x);
          long double lgammal(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The lgamma functions compute the natural logarithm of the absolute value of gamma of
  x. A range error occurs if x is too large. A pole error may occur if x is a negative integer
  or zero.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The lgamma functions return loge | (Gamma)(x) |.
 
 <h5><a name="7.12.8.4" href="#7.12.8.4">7.12.8.4 The tgamma functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12946,12 +12946,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float tgammaf(float x);
          long double tgammal(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The tgamma functions compute the gamma function of x. A domain error or pole error
  may occur if x is a negative integer or zero. A range error occurs if the magnitude of x is
  too large and may occur if the magnitude of x is too small.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The tgamma functions return (Gamma)(x).
 <!--page 268 -->
@@ -12959,7 +12959,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.12.9" href="#7.12.9">7.12.9 Nearest integer functions</a></h4>
 
 <h5><a name="7.12.9.1" href="#7.12.9.1">7.12.9.1 The ceil functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12967,15 +12967,15 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float ceilf(float x);
         long double ceill(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ceil functions compute the smallest integer value not less than x.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The ceil functions return [^x^], expressed as a floating-point number.
 
 <h5><a name="7.12.9.2" href="#7.12.9.2">7.12.9.2 The floor functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12983,15 +12983,15 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float floorf(float x);
         long double floorl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The floor functions compute the largest integer value not greater than x.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The floor functions return [_x_], expressed as a floating-point number.
 
 <h5><a name="7.12.9.3" href="#7.12.9.3">7.12.9.3 The nearbyint functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -12999,18 +12999,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float nearbyintf(float x);
         long double nearbyintl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The nearbyint functions round their argument to an integer value in floating-point
  format, using the current rounding direction and without raising the ''inexact'' floating-
  point exception.
 <!--page 269 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The nearbyint functions return the rounded integer value.
 
 <h5><a name="7.12.9.4" href="#7.12.9.4">7.12.9.4 The rint functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -13018,17 +13018,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float rintf(float x);
          long double rintl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The rint functions differ from the nearbyint functions (<a href="#7.12.9.3">7.12.9.3</a>) only in that the
  rint functions may raise the ''inexact'' floating-point exception if the result differs in
  value from the argument.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The rint functions return the rounded integer value.
 
 <h5><a name="7.12.9.5" href="#7.12.9.5">7.12.9.5 The lrint and llrint functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -13039,19 +13039,19 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          long long int llrintf(float x);
          long long int llrintl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The lrint and llrint functions round their argument to the nearest integer value,
  rounding according to the current rounding direction. If the rounded value is outside the
  range of the return type, the numeric result is unspecified and a domain error or range
  error may occur.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The lrint and llrint functions return the rounded integer value.
 <!--page 270 -->
 
 <h5><a name="7.12.9.6" href="#7.12.9.6">7.12.9.6 The round functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -13059,17 +13059,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float roundf(float x);
         long double roundl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The round functions round their argument to the nearest integer value in floating-point
  format, rounding halfway cases away from zero, regardless of the current rounding
  direction.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The round functions return the rounded integer value.
 
 <h5><a name="7.12.9.7" href="#7.12.9.7">7.12.9.7 The lround and llround functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -13080,18 +13080,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         long long int llroundf(float x);
         long long int llroundl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The lround and llround functions round their argument to the nearest integer value,
  rounding halfway cases away from zero, regardless of the current rounding direction. If
  the rounded value is outside the range of the return type, the numeric result is unspecified
  and a domain error or range error may occur.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The lround and llround functions return the rounded integer value.
 
 <h5><a name="7.12.9.8" href="#7.12.9.8">7.12.9.8 The trunc functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <!--page 271 -->
 <pre>
@@ -13100,18 +13100,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float truncf(float x);
         long double truncl(long double x);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The trunc functions round their argument to the integer value, in floating format,
  nearest to but no larger in magnitude than the argument.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The trunc functions return the truncated integer value.
 
 <h4><a name="7.12.10" href="#7.12.10">7.12.10 Remainder functions</a></h4>
 
 <h5><a name="7.12.10.1" href="#7.12.10.1">7.12.10.1 The fmod functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -13119,10 +13119,10 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
           float fmodf(float x, float y);
           long double fmodl(long double x, long double y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fmod functions compute the floating-point remainder of x/y.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fmod functions return the value x - ny, for some integer n such that, if y is nonzero,
  the result has the same sign as x and magnitude less than the magnitude of y. If y is zero,
@@ -13130,7 +13130,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  defined.
 
 <h5><a name="7.12.10.2" href="#7.12.10.2">7.12.10.2 The remainder functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -13138,7 +13138,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
           float remainderf(float x, float y);
           long double remainderl(long double x, long double y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The remainder functions compute the remainder x REM y required by IEC 60559.<sup><a href="#note236"><b>236)</b></a></sup>
  
@@ -13146,12 +13146,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
  
 <!--page 272 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The remainder functions return x REM y. If y is zero, whether a domain error occurs
  or the functions return zero is implementation defined.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note236" href="#note236">236)</a> ''When y != 0, the remainder r = x REM y is defined regardless of the rounding mode by the
  mathematical relation r = x - ny, where n is the integer nearest the exact value of x/y; whenever
  | n - x/y | = 1/2, then n is even. If r = 0, its sign shall be that of x.'' This definition is applicable for *
@@ -13159,7 +13159,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="7.12.10.3" href="#7.12.10.3">7.12.10.3 The remquo functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -13168,13 +13168,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         long double remquol(long double x, long double y,
              int *quo);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The remquo functions compute the same remainder as the remainder functions. In
  the object pointed to by quo they store a value whose sign is the sign of x/y and whose
  magnitude is congruent modulo 2n to the magnitude of the integral quotient of x/y, where
  n is an implementation-defined integer greater than or equal to 3.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The remquo functions return x REM y. If y is zero, the value stored in the object
  pointed to by quo is unspecified and whether a domain error occurs or the functions
@@ -13183,7 +13183,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.12.11" href="#7.12.11">7.12.11 Manipulation functions</a></h4>
 
 <h5><a name="7.12.11.1" href="#7.12.11.1">7.12.11.1 The copysign functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -13191,19 +13191,19 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         float copysignf(float x, float y);
         long double copysignl(long double x, long double y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The copysign functions produce a value with the magnitude of x and the sign of y.
  They produce a NaN (with the sign of y) if x is a NaN. On implementations that
  represent a signed zero but do not treat negative zero consistently in arithmetic
  operations, the copysign functions regard the sign of zero as positive.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The copysign functions return a value with the magnitude of x and the sign of y.
 <!--page 273 -->
 
 <h5><a name="7.12.11.2" href="#7.12.11.2">7.12.11.2 The nan functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -13211,7 +13211,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float nanf(const char *tagp);
          long double nanl(const char *tagp);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The call nan("n-char-sequence") is equivalent to strtod("NAN(n-char-
  sequence)",     (char**)       NULL); the call nan("") is equivalent to
@@ -13219,14 +13219,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  sequence or an empty string, the call is equivalent to strtod("NAN", (char**)
  NULL). Calls to nanf and nanl are equivalent to the corresponding calls to strtof
  and strtold.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The nan functions return a quiet NaN, if available, with content indicated through tagp.
  If the implementation does not support quiet NaNs, the functions return zero.
 <p><b> Forward references</b>: the strtod, strtof, and strtold functions (<a href="#7.22.1.3">7.22.1.3</a>).
 
 <h5><a name="7.12.11.3" href="#7.12.11.3">7.12.11.3 The nextafter functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -13234,14 +13234,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float nextafterf(float x, float y);
          long double nextafterl(long double x, long double y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The nextafter functions determine the next representable value, in the type of the
  function, after x in the direction of y, where x and y are first converted to the type of the
  function.<sup><a href="#note237"><b>237)</b></a></sup> The nextafter functions return y if x equals y. A range error may occur
  if the magnitude of x is the largest finite value representable in the type and the result is
  infinite or not representable in the type.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The nextafter functions return the next representable value in the specified format
  after x in the direction of y.
@@ -13249,13 +13249,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 274 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note237" href="#note237">237)</a> The argument values are converted to the type of the function, even by a macro implementation of the
  function.
 </small>
 
 <h5><a name="7.12.11.4" href="#7.12.11.4">7.12.11.4 The nexttoward functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -13263,13 +13263,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float nexttowardf(float x, long double y);
          long double nexttowardl(long double x, long double y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The nexttoward functions are equivalent to the nextafter functions except that the
  second parameter has type long double and the functions return y converted to the
  type of the function if x equals y.<sup><a href="#note238"><b>238)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note238" href="#note238">238)</a> The result of the nexttoward functions is determined in the type of the function, without loss of
  range or precision in a floating second argument.
 </small>
@@ -13277,7 +13277,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.12.12" href="#7.12.12">7.12.12 Maximum, minimum, and positive difference functions</a></h4>
 
 <h5><a name="7.12.12.1" href="#7.12.12.1">7.12.12.1 The fdim functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -13285,7 +13285,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float fdimf(float x, float y);
          long double fdiml(long double x, long double y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fdim functions determine the positive difference between their arguments:
 <pre>
@@ -13294,12 +13294,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
        {+0     if x &lt;= y
 </pre>
  A range error may occur.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fdim functions return the positive difference value.
 
 <h5><a name="7.12.12.2" href="#7.12.12.2">7.12.12.2 The fmax functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -13311,20 +13311,20 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
  
 <!--page 275 -->
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fmax functions determine the maximum numeric value of their arguments.<sup><a href="#note239"><b>239)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fmax functions return the maximum numeric value of their arguments.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note239" href="#note239">239)</a> NaN arguments are treated as missing data: if one argument is a NaN and the other numeric, then the
  fmax functions choose the numeric value. See <a href="#F.10.9.2">F.10.9.2</a>.
 </small>
 
 <h5><a name="7.12.12.3" href="#7.12.12.3">7.12.12.3 The fmin functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -13332,21 +13332,21 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          float fminf(float x, float y);
          long double fminl(long double x, long double y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fmin functions determine the minimum numeric value of their arguments.<sup><a href="#note240"><b>240)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fmin functions return the minimum numeric value of their arguments.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note240" href="#note240">240)</a> The fmin functions are analogous to the fmax functions in their treatment of NaNs.
 </small>
 
 <h4><a name="7.12.13" href="#7.12.13">7.12.13 Floating multiply-add</a></h4>
 
 <h5><a name="7.12.13.1" href="#7.12.13.1">7.12.13.1 The fma functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -13355,12 +13355,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          long double fmal(long double x, long double y,
               long double z);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fma functions compute (x x y) + z, rounded as one ternary operation: they compute
  the value (as if) to infinite precision and round once to the result format, according to the
  current rounding mode. A range error may occur.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fma functions return (x x y) + z, rounded as one ternary operation.
  
@@ -13382,7 +13382,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  the synopses in this subclause, real-floating indicates that the argument shall be an
  expression of real floating type<sup><a href="#note242"><b>242)</b></a></sup> (both arguments need not have the same type).<sup><a href="#note243"><b>243)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note241" href="#note241">241)</a> IEC 60559 requires that the built-in relational operators raise the ''invalid'' floating-point exception if
  the operands compare unordered, as an error indicator for programs written without consideration of
  NaNs; the result in these cases is false.
@@ -13395,24 +13395,24 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="7.12.14.1" href="#7.12.14.1">7.12.14.1 The isgreater macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.12">&lt;math.h&gt;</a>
           int isgreater(real-floating x, real-floating y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isgreater macro determines whether its first argument is greater than its second
  argument. The value of isgreater(x, y) is always equal to (x) &gt; (y); however,
  unlike (x) &gt; (y), isgreater(x, y) does not raise the ''invalid'' floating-point
  exception when x and y are unordered.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The isgreater macro returns the value of (x) &gt; (y).
 
 <h5><a name="7.12.14.2" href="#7.12.14.2">7.12.14.2 The isgreaterequal macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.12">&lt;math.h&gt;</a>
@@ -13423,80 +13423,80 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
  
 <!--page 277 -->
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isgreaterequal macro determines whether its first argument is greater than or
  equal to its second argument. The value of isgreaterequal(x, y) is always equal
  to (x) &gt;= (y); however, unlike (x) &gt;= (y), isgreaterequal(x, y) does
  not raise the ''invalid'' floating-point exception when x and y are unordered.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The isgreaterequal macro returns the value of (x) &gt;= (y).
 
 <h5><a name="7.12.14.3" href="#7.12.14.3">7.12.14.3 The isless macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
          int isless(real-floating x, real-floating y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isless macro determines whether its first argument is less than its second
  argument. The value of isless(x, y) is always equal to (x) &lt; (y); however,
  unlike (x) &lt; (y), isless(x, y) does not raise the ''invalid'' floating-point
  exception when x and y are unordered.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The isless macro returns the value of (x) &lt; (y).
 
 <h5><a name="7.12.14.4" href="#7.12.14.4">7.12.14.4 The islessequal macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.12">&lt;math.h&gt;</a>
          int islessequal(real-floating x, real-floating y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The islessequal macro determines whether its first argument is less than or equal to
  its second argument. The value of islessequal(x, y) is always equal to
  (x) &lt;= (y); however, unlike (x) &lt;= (y), islessequal(x, y) does not raise
  the ''invalid'' floating-point exception when x and y are unordered.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The islessequal macro returns the value of (x) &lt;= (y).
 <!--page 278 -->
 
 <h5><a name="7.12.14.5" href="#7.12.14.5">7.12.14.5 The islessgreater macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
         int islessgreater(real-floating x, real-floating y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The islessgreater macro determines whether its first argument is less than or
  greater than its second argument. The islessgreater(x, y) macro is similar to
  (x) &lt; (y) || (x) &gt; (y); however, islessgreater(x, y) does not raise
  the ''invalid'' floating-point exception when x and y are unordered (nor does it evaluate x
  and y twice).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The islessgreater macro returns the value of (x) &lt; (y) || (x) &gt; (y).
 
 <h5><a name="7.12.14.6" href="#7.12.14.6">7.12.14.6 The isunordered macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.12">&lt;math.h&gt;</a>
         int isunordered(real-floating x, real-floating y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The isunordered macro determines whether its arguments are unordered.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The isunordered macro returns 1 if its arguments are unordered and 0 otherwise.
 <!--page 279 -->
@@ -13521,7 +13521,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  linkage. If a macro definition is suppressed in order to access an actual function, or a
  program defines an external identifier with the name setjmp, the behavior is undefined.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note244" href="#note244">244)</a> These functions are useful for dealing with unusual conditions encountered in a low-level function of
  a program.
 </small>
@@ -13529,22 +13529,22 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.13.1" href="#7.13.1">7.13.1 Save calling environment</a></h4>
 
 <h5><a name="7.13.1.1" href="#7.13.1.1">7.13.1.1 The setjmp macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.13">&lt;setjmp.h&gt;</a>
          int setjmp(jmp_buf env);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The setjmp macro saves its calling environment in its jmp_buf argument for later use
  by the longjmp function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If the return is from a direct invocation, the setjmp macro returns the value zero. If the
  return is from a call to the longjmp function, the setjmp macro returns a nonzero
  value.
-<h6>Environmental limits</h6>
+<p><b>Environmental limits</b>
 <p><!--para 4 -->
  An invocation of the setjmp macro shall appear only in one of the following contexts:
 <ul>
@@ -13565,13 +13565,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.13.2" href="#7.13.2">7.13.2 Restore calling environment</a></h4>
 
 <h5><a name="7.13.2.1" href="#7.13.2.1">7.13.2.1 The longjmp function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.13">&lt;setjmp.h&gt;</a>
           _Noreturn void longjmp(jmp_buf env, int val);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The longjmp function restores the environment saved by the most recent invocation of
  the setjmp macro in the same invocation of the program with the corresponding
@@ -13586,7 +13586,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  invocation of the corresponding setjmp macro that do not have volatile-qualified type
  and have been changed between the setjmp invocation and longjmp call are
  indeterminate.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  After longjmp is completed, program execution continues as if the corresponding
  invocation of the setjmp macro had just returned the value specified by val. The
@@ -13625,7 +13625,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          }
 </pre>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note245" href="#note245">245)</a> For example, by executing a return statement or because another longjmp call has caused a
  transfer to a setjmp invocation in a function earlier in the set of nested calls.
 </small>
@@ -13677,7 +13677,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 283 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note247" href="#note247">247)</a> See ''future library directions'' (<a href="#7.30.6">7.30.6</a>). The names of the signal numbers reflect the following terms
  (respectively): abort, floating-point exception, illegal instruction, interrupt, segmentation violation,
  and termination.
@@ -13686,13 +13686,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.14.1" href="#7.14.1">7.14.1 Specify signal handling</a></h4>
 
 <h5><a name="7.14.1.1" href="#7.14.1.1">7.14.1.1 The signal function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.14">&lt;signal.h&gt;</a>
          void (*signal(int sig, void (*func)(int)))(int);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The signal function chooses one of three ways in which receipt of the signal number
  sig is to be subsequently handled. If the value of func is SIG_DFL, default handling
@@ -13740,7 +13740,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  is executed for all other signals defined by the implementation.
 <p><!--para 7 -->
  The implementation shall behave as if no library function calls the signal function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 8 -->
  If the request can be honored, the signal function returns the value of func for the
  most recent successful call to signal for the specified signal sig. Otherwise, a value of
@@ -13748,7 +13748,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: the abort function (<a href="#7.22.4.1">7.22.4.1</a>), the exit function (<a href="#7.22.4.4">7.22.4.4</a>), the
  _Exit function (<a href="#7.22.4.5">7.22.4.5</a>), the quick_exit function (<a href="#7.22.4.7">7.22.4.7</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note248" href="#note248">248)</a> This includes functions called indirectly via standard library functions (e.g., a SIGABRT handler
  called via the abort function).
 </small>
@@ -13758,18 +13758,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.14.2" href="#7.14.2">7.14.2 Send signal</a></h4>
 
 <h5><a name="7.14.2.1" href="#7.14.2.1">7.14.2.1 The raise function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.14">&lt;signal.h&gt;</a>
         int raise(int sig);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The raise function carries out the actions described in <a href="#7.14.1.1">7.14.1.1</a> for the signal sig. If a
  signal handler is called, the raise function shall not return until after the signal handler
  does.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The raise function returns zero if successful, nonzero if unsuccessful.
 <!--page 285 -->
@@ -13814,7 +13814,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  value of ap in the calling function is indeterminate and shall be passed to the va_end
  macro prior to any further reference to ap.<sup><a href="#note250"><b>250)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note250" href="#note250">250)</a> It is permitted to create a pointer to a va_list and pass that pointer to another function, in which
  case the original function may make further use of the original list after the other function returns.
 </small>
@@ -13830,13 +13830,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  function.
 
 <h5><a name="7.16.1.1" href="#7.16.1.1">7.16.1.1 The va_arg macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.16">&lt;stdarg.h&gt;</a>
          type va_arg(va_list ap, type);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The va_arg macro expands to an expression that has the specified type and the value of
  the next argument in the call. The parameter ap shall have been initialized by the
@@ -13855,38 +13855,38 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  type, and the value is representable in both types;
 <li>  one type is pointer to void and the other is a pointer to a character type.
 </ul>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The first invocation of the va_arg macro after that of the va_start macro returns the
  value of the argument after that specified by parmN . Successive invocations return the
  values of the remaining arguments in succession.
 
 <h5><a name="7.16.1.2" href="#7.16.1.2">7.16.1.2 The va_copy macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.16">&lt;stdarg.h&gt;</a>
          void va_copy(va_list dest, va_list src);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The va_copy macro initializes dest as a copy of src, as if the va_start macro had
  been applied to dest followed by the same sequence of uses of the va_arg macro as
  had previously been used to reach the present state of src. Neither the va_copy nor
  va_start macro shall be invoked to reinitialize dest without an intervening
  invocation of the va_end macro for the same dest.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The va_copy macro returns no value.
 
 <h5><a name="7.16.1.3" href="#7.16.1.3">7.16.1.3 The va_end macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.16">&lt;stdarg.h&gt;</a>
          void va_end(va_list ap);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The va_end macro facilitates a normal return from the function whose variable
  argument list was referred to by the expansion of the va_start macro, or the function
@@ -13896,18 +13896,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  by the va_start or va_copy macro). If there is no corresponding invocation of the
  va_start or va_copy macro, or if the va_end macro is not invoked before the
  return, the behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The va_end macro returns no value.
 
 <h5><a name="7.16.1.4" href="#7.16.1.4">7.16.1.4 The va_start macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.16">&lt;stdarg.h&gt;</a>
          void va_start(va_list ap, parmN);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The va_start macro shall be invoked before any access to the unnamed arguments.
 <p><!--para 3 -->
@@ -13920,7 +13920,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  parmN is declared with the register storage class, with a function or array type, or
  with a type that is not compatible with the type that results after application of the default
  argument promotions, the behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The va_start macro returns no value.
 <p><!--para 6 -->
@@ -14052,13 +14052,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.17.2" href="#7.17.2">7.17.2 Initialization</a></h4>
 
 <h5><a name="7.17.2.1" href="#7.17.2.1">7.17.2.1 The ATOMIC_VAR_INIT macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.17">&lt;stdatomic.h&gt;</a>
          #define ATOMIC_VAR_INIT(C value)
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ATOMIC_VAR_INIT macro expands to a token sequence suitable for initializing an
  atomic object of a type that is initialization-compatible with value. An atomic object
@@ -14077,13 +14077,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 
 <h5><a name="7.17.2.2" href="#7.17.2.2">7.17.2.2 The atomic_init generic function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.17">&lt;stdatomic.h&gt;</a>
          void atomic_init(volatile A *obj, C value);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The atomic_init generic function initializes the atomic object pointed to by obj to
  the value value, while also initializing any additional state that the implementation
@@ -14093,7 +14093,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  Although this function initializes an atomic object, it does not avoid data races;
  concurrent access to the variable being initialized, even via an atomic operation,
  constitutes a data race.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The atomic_init generic function returns no value.
 <p><!--para 5 -->
@@ -14219,7 +14219,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  in the computation of 42. In the absence of ''relaxed'' operations and read-modify-write operations with
  weaker than memory_order_acq_rel ordering, the second requirement has no impact.
  
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 15 -->
  The requirements do not forbid r1 == 42 &amp;&amp; r2 == 42 in the following example,
  with x and y initially zero:
@@ -14241,23 +14241,23 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  Implementations should make atomic stores visible to atomic loads within a reasonable
  amount of time.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note251" href="#note251">251)</a> Among other implications, atomic variables shall not decay.
 </small>
 
 <h5><a name="7.17.3.1" href="#7.17.3.1">7.17.3.1 The kill_dependency macro</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.17">&lt;stdatomic.h&gt;</a>
          type kill_dependency(type y);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The kill_dependency macro terminates a dependency chain; the argument does not
  carry a dependency to the return value.
 <!--page 295 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The kill_dependency macro returns the value of y.
 
@@ -14285,13 +14285,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  in the release sequence headed by A.
 
 <h5><a name="7.17.4.1" href="#7.17.4.1">7.17.4.1 The atomic_thread_fence function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.17">&lt;stdatomic.h&gt;</a>
          void atomic_thread_fence(memory_order order);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  Depending on the value of order, this operation:
 <ul>
@@ -14305,18 +14305,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  memory_order_seq_cst.
 <!--page 296 -->
 </ul>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The atomic_thread_fence function returns no value.
 
 <h5><a name="7.17.4.2" href="#7.17.4.2">7.17.4.2 The atomic_signal_fence function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.17">&lt;stdatomic.h&gt;</a>
          void atomic_signal_fence(memory_order order);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  Equivalent to atomic_thread_fence(order), except that ''synchronizes with''
  relationships are established only between a thread and a signal handler executed in the
@@ -14330,7 +14330,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  atomic_thread_fence, but the hardware fence instructions that atomic_thread_fence would
  have inserted are not emitted.
  
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The atomic_signal_fence function returns no value.
 
@@ -14347,17 +14347,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 
 <h5><a name="7.17.5.1" href="#7.17.5.1">7.17.5.1 The atomic_is_lock_free generic function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.17">&lt;stdatomic.h&gt;</a>
          _Bool atomic_is_lock_free(atomic_type const volatile *obj);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The atomic_is_lock_free generic function indicates whether or not the object
  pointed to by obj is lock-free. atomic_type can be any atomic type.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The atomic_is_lock_free generic function returns nonzero (true) if and only if the
  object's operations are lock-free. The result of a lock-free query on one object cannot be
@@ -14428,7 +14428,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  instances of those kinds. This subclause specifies each general kind.
 
 <h5><a name="7.17.7.1" href="#7.17.7.1">7.17.7.1 The atomic_store generic functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.17">&lt;stdatomic.h&gt;</a>
@@ -14436,18 +14436,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          void atomic_store_explicit(volatile A *object,
               C desired, memory_order order);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The      order      argument    shall    not    be    memory_order_acquire,
  memory_order_consume, nor memory_order_acq_rel. Atomically replace the
  value pointed to by object with the value of desired. Memory is affected according
  to the value of order.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The atomic_store generic functions return no value.
 
 <h5><a name="7.17.7.2" href="#7.17.7.2">7.17.7.2 The atomic_load generic functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.17">&lt;stdatomic.h&gt;</a>
@@ -14455,16 +14455,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          C atomic_load_explicit(volatile A *object,
               memory_order order);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The order argument shall not be memory_order_release nor
  memory_order_acq_rel. Memory is affected according to the value of order.
-<h6>Returns</h6>
+<p><b>Returns</b>
  Atomically returns the value pointed to by object.
 <!--page 300 -->
 
 <h5><a name="7.17.7.3" href="#7.17.7.3">7.17.7.3 The atomic_exchange generic functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.17">&lt;stdatomic.h&gt;</a>
@@ -14472,17 +14472,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
           C atomic_exchange_explicit(volatile A *object,
                C desired, memory_order order);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  Atomically replace the value pointed to by object with desired. Memory is affected
  according to the value of order. These operations are read-modify-write operations
  (<a href="#5.1.2.4">5.1.2.4</a>).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  Atomically returns the value pointed to by object immediately before the effects.
 
 <h5><a name="7.17.7.4" href="#7.17.7.4">7.17.7.4 The atomic_compare_exchange generic functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.17">&lt;stdatomic.h&gt;</a>
@@ -14497,7 +14497,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                volatile A *object, C *expected, C desired,
                memory_order success, memory_order failure);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The failure argument shall not be memory_order_release nor
  memory_order_acq_rel. The failure argument shall be no stronger than the
@@ -14537,7 +14537,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  platforms. When a weak compare-and-exchange would require a loop and a strong one would not, the
  strong one is preferable.
  
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 7 -->
  The result of the comparison.
 
@@ -14553,7 +14553,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
   or             |       bitwise inclusive or
   xor            ^       bitwise exclusive or
   and            &amp;       bitwise and
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 2 -->
 <pre>
           #include <a href="#7.17">&lt;stdatomic.h&gt;</a>
@@ -14561,7 +14561,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
           C atomic_fetch_key_explicit(volatile A *object,
                M operand, memory_order order);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 3 -->
  Atomically replaces the value pointed to by object with the result of the computation
  applied to the value pointed to by object and the given operand. Memory is affected
@@ -14571,7 +14571,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  complement representation with silent wrap-around on overflow; there are no undefined
  results. For address types, the result may be an undefined address, but the operations
  otherwise have no undefined behavior.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  Atomically, the value pointed to by object immediately before the effects.
 <p><!--para 5 -->
@@ -14606,7 +14606,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 
 <h5><a name="7.17.8.1" href="#7.17.8.1">7.17.8.1 The atomic_flag_test_and_set functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.17">&lt;stdatomic.h&gt;</a>
@@ -14615,18 +14615,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          bool atomic_flag_test_and_set_explicit(
               volatile atomic_flag *object, memory_order order);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  Atomically sets the value pointed to by object to true. Memory is affected according
  to the value of order. These operations are atomic read-modify-write operations
  (<a href="#5.1.2.4">5.1.2.4</a>).
 <!--page 303 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  Atomically, the value of the object immediately before the effects.
 
 <h5><a name="7.17.8.2" href="#7.17.8.2">7.17.8.2 The atomic_flag_clear functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.17">&lt;stdatomic.h&gt;</a>
@@ -14634,12 +14634,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          void atomic_flag_clear_explicit(
               volatile atomic_flag *object, memory_order order);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The order argument shall not be memory_order_acquire nor
  memory_order_acq_rel. Atomically sets the value pointed to by object to false.
  Memory is affected according to the value of order.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The atomic_flag_clear functions return no value.
 <!--page 304 -->
@@ -14677,7 +14677,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 305 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note252" href="#note252">252)</a> See ''future library directions'' (<a href="#7.30.7">7.30.7</a>).
 </small>
 
@@ -14727,7 +14727,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
  then the expression &amp;(t.member-designator) evaluates to an address constant. (If the
  specified member is a bit-field, the behavior is undefined.)
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 4 -->
  The types used for size_t and ptrdiff_t should not have an integer conversion rank
  greater than that of signed long int unless the implementation supports objects
@@ -14762,7 +14762,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  shall provide those types described as ''required'', but need not provide any of the others
  (described as ''optional'').
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note253" href="#note253">253)</a> See ''future library directions'' (<a href="#7.30.8">7.30.8</a>).
 </small>
 <p><small><a name="note254" href="#note254">254)</a> Some of these types may denote implementation-defined extended integer types.
@@ -14839,7 +14839,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
  All other types of this form are optional.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note255" href="#note255">255)</a> The designated type is not guaranteed to be fastest for all purposes; if the implementation has no clear
  grounds for choosing one type over another, it will simply pick some integer type satisfying the
  signedness and width requirements.
@@ -15007,7 +15007,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  otherwise, wint_t is defined as an unsigned integer type, and the value of WINT_MIN
  shall be 0 and the value of WINT_MAX shall be no less than 65535.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note256" href="#note256">256)</a> A freestanding implementation need not provide all of these types.
 </small>
 <p><small><a name="note257" href="#note257">257)</a> The values WCHAR_MIN and WCHAR_MAX do not necessarily correspond to members of the extended
@@ -15161,7 +15161,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: files (<a href="#7.21.3">7.21.3</a>), the fseek function (<a href="#7.21.9.2">7.21.9.2</a>), streams (<a href="#7.21.2">7.21.2</a>), the
  tmpnam function (<a href="#7.21.4.4">7.21.4.4</a>), <a href="#7.28">&lt;wchar.h&gt;</a> (<a href="#7.28">7.28</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note258" href="#note258">258)</a> If the implementation imposes no practical limit on the length of file name strings, the value of
  FILENAME_MAX should instead be the recommended size of an array intended to hold a file name
  string. Of course, file name string contents are subject to other system-specific constraints; therefore
@@ -15224,7 +15224,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  value of this mbstate_t object as part of the value of the fpos_t object. A later
  successful call to fsetpos using the same stored fpos_t value restores the value of
  the associated mbstate_t object as well as the position within the controlled stream.
-<h6>Environmental limits</h6>
+<p><b>Environmental limits</b>
 <p><!--para 7 -->
  An implementation shall support text files with lines containing at least 254 characters,
  including the terminating new-line character. The value of the macro BUFSIZ shall be at
@@ -15238,7 +15238,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 318 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note259" href="#note259">259)</a> An implementation need not distinguish between text streams and binary streams. In such an
  implementation, there need be no new-line characters in a text stream nor any limit to the length of a
  line.
@@ -15342,7 +15342,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  multibyte character. The wide character input/output functions and the byte input/output
  functions store the value of the macro EILSEQ in errno if and only if an encoding error
  occurs.
-<h6>Environmental limits</h6>
+<p><b>Environmental limits</b>
 <p><!--para 15 -->
  The value of FOPEN_MAX shall be at least eight, including the three standard text
  streams.
@@ -15352,7 +15352,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  fputwc function (<a href="#7.28.3.3">7.28.3.3</a>), conversion state (<a href="#7.28.6">7.28.6</a>), the mbrtowc function
  (<a href="#7.28.6.3.2">7.28.6.3.2</a>), the wcrtomb function (<a href="#7.28.6.3.3">7.28.6.3.3</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note261" href="#note261">261)</a> Setting the file position indicator to end-of-file, as with fseek(file, 0, SEEK_END), has
  undefined behavior for a binary stream (because of possible trailing null characters) or for any stream
  with state-dependent encoding that does not assuredly end in the initial shift state.
@@ -15361,79 +15361,79 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.21.4" href="#7.21.4">7.21.4 Operations on files</a></h4>
 
 <h5><a name="7.21.4.1" href="#7.21.4.1">7.21.4.1 The remove function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;stdio.h&gt;</a>
         int remove(const char *filename);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The remove function causes the file whose name is the string pointed to by filename
  to be no longer accessible by that name. A subsequent attempt to open that file using that
  name will fail, unless it is created anew. If the file is open, the behavior of the remove
  function is implementation-defined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The remove function returns zero if the operation succeeds, nonzero if it fails.
 
 <h5><a name="7.21.4.2" href="#7.21.4.2">7.21.4.2 The rename function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;stdio.h&gt;</a>
         int rename(const char *old, const char *new);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The rename function causes the file whose name is the string pointed to by old to be
  henceforth known by the name given by the string pointed to by new. The file named
  old is no longer accessible by that name. If a file named by the string pointed to by new
  exists prior to the call to the rename function, the behavior is implementation-defined.
 <!--page 321 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The rename function returns zero if the operation succeeds, nonzero if it fails,<sup><a href="#note262"><b>262)</b></a></sup> in
  which case if the file existed previously it is still known by its original name.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note262" href="#note262">262)</a> Among the reasons the implementation may cause the rename function to fail are that the file is open
  or that it is necessary to copy its contents to effectuate its renaming.
 </small>
 
 <h5><a name="7.21.4.3" href="#7.21.4.3">7.21.4.3 The tmpfile function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          FILE *tmpfile(void);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The tmpfile function creates a temporary binary file that is different from any other
  existing file and that will automatically be removed when it is closed or at program
  termination. If the program terminates abnormally, whether an open temporary file is
  removed is implementation-defined. The file is opened for update with "wb+" mode.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 3 -->
  It should be possible to open at least TMP_MAX temporary files during the lifetime of the
  program (this limit may be shared with tmpnam) and there should be no limit on the
  number simultaneously open other than this limit and any limit on the number of open
  files (FOPEN_MAX).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The tmpfile function returns a pointer to the stream of the file that it created. If the file
  cannot be created, the tmpfile function returns a null pointer.
 <p><b> Forward references</b>: the fopen function (<a href="#7.21.5.3">7.21.5.3</a>).
 
 <h5><a name="7.21.4.4" href="#7.21.4.4">7.21.4.4 The tmpnam function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          char *tmpnam(char *s);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The tmpnam function generates a string that is a valid file name and that is not the same
  as the name of an existing file.<sup><a href="#note263"><b>263)</b></a></sup> The function is potentially capable of generating at
@@ -15448,7 +15448,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  Calls to the tmpnam function with a null pointer argument may introduce data races with
  each other. The implementation shall behave as if no library function calls the tmpnam
  function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  If no suitable string can be generated, the tmpnam function returns a null pointer.
  Otherwise, if the argument is a null pointer, the tmpnam function leaves its result in an
@@ -15456,11 +15456,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  function may modify the same object). If the argument is not a null pointer, it is assumed
  to point to an array of at least L_tmpnam chars; the tmpnam function writes its result
  in that array and returns the argument as its value.
-<h6>Environmental limits</h6>
+<p><b>Environmental limits</b>
 <p><!--para 6 -->
  The value of the macro TMP_MAX shall be at least 25.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note263" href="#note263">263)</a> Files created using strings generated by the tmpnam function are temporary only in the sense that
  their names should not collide with those generated by conventional naming rules for the
  implementation. It is still necessary to use the remove function to remove such files when their use
@@ -15470,13 +15470,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.21.5" href="#7.21.5">7.21.5 File access functions</a></h4>
 
 <h5><a name="7.21.5.1" href="#7.21.5.1">7.21.5.1 The fclose function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;stdio.h&gt;</a>
         int fclose(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  A successful call to the fclose function causes the stream pointed to by stream to be
  flushed and the associated file to be closed. Any unwritten buffered data for the stream
@@ -15484,20 +15484,20 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  are discarded. Whether or not the call succeeds, the stream is disassociated from the file
  and any buffer set by the setbuf or setvbuf function is disassociated from the stream
  (and deallocated if it was automatically allocated).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fclose function returns zero if the stream was successfully closed, or EOF if any
  errors were detected.
 <!--page 323 -->
 
 <h5><a name="7.21.5.2" href="#7.21.5.2">7.21.5.2 The fflush function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          int fflush(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If stream points to an output stream or an update stream in which the most recent
  operation was not input, the fflush function causes any unwritten data for that stream
@@ -15506,21 +15506,21 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 3 -->
  If stream is a null pointer, the fflush function performs this flushing action on all
  streams for which the behavior is defined above.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The fflush function sets the error indicator for the stream and returns EOF if a write
  error occurs, otherwise it returns zero.
 <p><b> Forward references</b>: the fopen function (<a href="#7.21.5.3">7.21.5.3</a>).
 
 <h5><a name="7.21.5.3" href="#7.21.5.3">7.21.5.3 The fopen function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          FILE *fopen(const char * restrict filename,
               const char * restrict mode);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fopen function opens the file whose name is the string pointed to by filename,
  and associates a stream with it.
@@ -15573,21 +15573,21 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 8 -->
  When opened, a stream is fully buffered if and only if it can be determined not to refer to
  an interactive device. The error and end-of-file indicators for the stream are cleared.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 9 -->
  The fopen function returns a pointer to the object controlling the stream. If the open
  operation fails, fopen returns a null pointer.
 <p><b> Forward references</b>: file positioning functions (<a href="#7.21.9">7.21.9</a>).
 <!--page 325 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note264" href="#note264">264)</a> If the string begins with one of the above sequences, the implementation might choose to ignore the
  remaining characters, or it might use them to select different kinds of a file (some of which might not
  conform to the properties in <a href="#7.21.2">7.21.2</a>).
 </small>
 
 <h5><a name="7.21.5.4" href="#7.21.5.4">7.21.5.4 The freopen function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
@@ -15595,7 +15595,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               const char * restrict mode,
               FILE * restrict stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The freopen function opens the file whose name is the string pointed to by filename
  and associates the stream pointed to by stream with it. The mode argument is used just
@@ -15609,26 +15609,26 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  The freopen function first attempts to close any file that is associated with the specified
  stream. Failure to close the file is ignored. The error and end-of-file indicators for the
  stream are cleared.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The freopen function returns a null pointer if the open operation fails. Otherwise,
  freopen returns the value of stream.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note265" href="#note265">265)</a> The primary use of the freopen function is to change the file associated with a standard text stream
  (stderr, stdin, or stdout), as those identifiers need not be modifiable lvalues to which the value
  returned by the fopen function may be assigned.
 </small>
 
 <h5><a name="7.21.5.5" href="#7.21.5.5">7.21.5.5 The setbuf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          void setbuf(FILE * restrict stream,
               char * restrict buf);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  Except that it returns no value, the setbuf function is equivalent to the setvbuf
  function invoked with the values _IOFBF for mode and BUFSIZ for size, or (if buf
@@ -15638,13 +15638,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
  
 <!--page 326 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The setbuf function returns no value.
 <p><b> Forward references</b>: the setvbuf function (<a href="#7.21.5.6">7.21.5.6</a>).
 
 <h5><a name="7.21.5.6" href="#7.21.5.6">7.21.5.6 The setvbuf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
@@ -15652,7 +15652,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               char * restrict buf,
               int mode, size_t size);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The setvbuf function may be used only after the stream pointed to by stream has
  been associated with an open file and before any other operation (other than an
@@ -15664,7 +15664,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  specifies the size of the array; otherwise, size may determine the size of a buffer
  allocated by the setvbuf function. The contents of the array at any time are
  indeterminate.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The setvbuf function returns zero on success, or nonzero if an invalid value is given
  for mode or if the request cannot be honored.
@@ -15674,7 +15674,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 327 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note266" href="#note266">266)</a> The buffer has to have a lifetime at least as great as the open stream, so the stream should be closed
  before a buffer that has automatic storage duration is deallocated upon block exit.
 </small>
@@ -15684,19 +15684,19 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  The formatted input/output functions shall behave as if there is a sequence point after the
  actions associated with each specifier.<sup><a href="#note267"><b>267)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note267" href="#note267">267)</a> The fprintf functions perform writes to memory for the %n specifier.
 </small>
 
 <h5><a name="7.21.6.1" href="#7.21.6.1">7.21.6.1 The fprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.21">&lt;stdio.h&gt;</a>
           int fprintf(FILE * restrict stream,
                const char * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fprintf function writes output to the stream pointed to by stream, under control
  of the string pointed to by format that specifies how subsequent arguments are
@@ -15994,7 +15994,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 11 -->
  For a and A conversions, if FLT_RADIX is a power of 2, the value is correctly rounded
  to a hexadecimal floating number with the given precision.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 12 -->
  For a and A conversions, if FLT_RADIX is not a power of 2 and the result is not exactly
  representable in the given precision, the result should be one of the two adjacent numbers
@@ -16012,11 +16012,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 334 -->
  of the resultant decimal string D should satisfy L &lt;= D &lt;= U, with the extra stipulation that
  the error should have a correct sign for the current rounding direction.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 14 -->
  The fprintf function returns the number of characters transmitted, or a negative value
  if an output or encoding error occurred.
-<h6>Environmental limits</h6>
+<p><b>Environmental limits</b>
 <p><!--para 15 -->
  The number of characters that can be produced by any single conversion shall be at least
  4095.
@@ -16067,7 +16067,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: conversion state (<a href="#7.28.6">7.28.6</a>), the wcrtomb function (<a href="#7.28.6.3.3">7.28.6.3.3</a>).
 <!--page 335 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note268" href="#note268">268)</a> Note that 0 is taken as a flag, not as the beginning of a field width.
 </small>
 <p><small><a name="note269" href="#note269">269)</a> The results of all floating conversions of a negative zero, and of negative values that round to zero,
@@ -16096,14 +16096,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="7.21.6.2" href="#7.21.6.2">7.21.6.2 The fscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          int fscanf(FILE * restrict stream,
               const char * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fscanf function reads input from the stream pointed to by stream, under control
  of the string pointed to by format that specifies the admissible input sequences and how
@@ -16344,7 +16344,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  Trailing white space (including new-line characters) is left unread unless matched by a
  directive. The success of literal matches and suppressed assignments is not directly
  determinable other than via the %n directive.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 16 -->
  The fscanf function returns the value of the macro EOF if an input failure occurs
  before the first conversion (if any) has completed. Otherwise, the function returns the
@@ -16486,7 +16486,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  strtol, strtoll, strtoul, and strtoull functions (<a href="#7.22.1.4">7.22.1.4</a>), conversion state
  (<a href="#7.28.6">7.28.6</a>), the wcrtomb function (<a href="#7.28.6.3.3">7.28.6.3.3</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note277" href="#note277">277)</a> These white-space characters are not counted against a specified field width.
 </small>
 <p><small><a name="note278" href="#note278">278)</a> fscanf pushes back at most one input character onto the input stream. Therefore, some sequences
@@ -16500,34 +16500,34 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="7.21.6.3" href="#7.21.6.3">7.21.6.3 The printf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          int printf(const char * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The printf function is equivalent to fprintf with the argument stdout interposed
  before the arguments to printf.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The printf function returns the number of characters transmitted, or a negative value if
  an output or encoding error occurred.
 
 <h5><a name="7.21.6.4" href="#7.21.6.4">7.21.6.4 The scanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          int scanf(const char * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The scanf function is equivalent to fscanf with the argument stdin interposed
  before the arguments to scanf.
 <!--page 343 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The scanf function returns the value of the macro EOF if an input failure occurs before
  the first conversion (if any) has completed. Otherwise, the scanf function returns the
@@ -16535,14 +16535,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  the event of an early matching failure.
 
 <h5><a name="7.21.6.5" href="#7.21.6.5">7.21.6.5 The snprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          int snprintf(char * restrict s, size_t n,
               const char * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The snprintf function is equivalent to fprintf, except that the output is written into
  an array (specified by argument s) rather than to a stream. If n is zero, nothing is written,
@@ -16550,7 +16550,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  discarded rather than being written to the array, and a null character is written at the end
  of the characters actually written into the array. If copying takes place between objects
  that overlap, the behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The snprintf function returns the number of characters that would have been written
  had n been sufficiently large, not counting the terminating null character, or a negative
@@ -16558,40 +16558,40 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  completely written if and only if the returned value is nonnegative and less than n.
 
 <h5><a name="7.21.6.6" href="#7.21.6.6">7.21.6.6 The sprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          int sprintf(char * restrict s,
               const char * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The sprintf function is equivalent to fprintf, except that the output is written into
  an array (specified by the argument s) rather than to a stream. A null character is written
  at the end of the characters written; it is not counted as part of the returned value. If
  copying takes place between objects that overlap, the behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The sprintf function returns the number of characters written in the array, not
  counting the terminating null character, or a negative value if an encoding error occurred.
 <!--page 344 -->
 
 <h5><a name="7.21.6.7" href="#7.21.6.7">7.21.6.7 The sscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;stdio.h&gt;</a>
         int sscanf(const char * restrict s,
              const char * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The sscanf function is equivalent to fscanf, except that input is obtained from a
  string (specified by the argument s) rather than from a stream. Reaching the end of the
  string is equivalent to encountering end-of-file for the fscanf function. If copying
  takes place between objects that overlap, the behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The sscanf function returns the value of the macro EOF if an input failure occurs
  before the first conversion (if any) has completed. Otherwise, the sscanf function
@@ -16599,7 +16599,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  zero, in the event of an early matching failure.
 
 <h5><a name="7.21.6.8" href="#7.21.6.8">7.21.6.8 The vfprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.16">&lt;stdarg.h&gt;</a>
@@ -16608,13 +16608,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
              const char * restrict format,
              va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vfprintf function is equivalent to fprintf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vfprintf function does not invoke the
  va_end macro.<sup><a href="#note281"><b>281)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vfprintf function returns the number of characters transmitted, or a negative
  value if an output or encoding error occurred.
@@ -16641,13 +16641,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note281" href="#note281">281)</a> As the functions vfprintf, vfscanf, vprintf, vscanf, vsnprintf, vsprintf, and
  vsscanf invoke the va_arg macro, the value of arg after the return is indeterminate.
 </small>
 
 <h5><a name="7.21.6.9" href="#7.21.6.9">7.21.6.9 The vfscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.16">&lt;stdarg.h&gt;</a>
@@ -16656,13 +16656,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               const char * restrict format,
               va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vfscanf function is equivalent to fscanf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vfscanf function does not invoke the
  va_end macro.<sup><a href="#note281"><b>281)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vfscanf function returns the value of the macro EOF if an input failure occurs
  before the first conversion (if any) has completed. Otherwise, the vfscanf function
@@ -16670,7 +16670,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  zero, in the event of an early matching failure.
 
 <h5><a name="7.21.6.10" href="#7.21.6.10">7.21.6.10 The vprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.16">&lt;stdarg.h&gt;</a>
@@ -16678,20 +16678,20 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          int vprintf(const char * restrict format,
               va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vprintf function is equivalent to printf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
 <!--page 346 -->
  possibly subsequent va_arg calls). The vprintf function does not invoke the
  va_end macro.<sup><a href="#note281"><b>281)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vprintf function returns the number of characters transmitted, or a negative value
  if an output or encoding error occurred.
 
 <h5><a name="7.21.6.11" href="#7.21.6.11">7.21.6.11 The vscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.16">&lt;stdarg.h&gt;</a>
@@ -16699,13 +16699,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         int vscanf(const char * restrict format,
              va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vscanf function is equivalent to scanf, with the variable argument list replaced
  by arg, which shall have been initialized by the va_start macro (and possibly
  subsequent va_arg calls). The vscanf function does not invoke the va_end
  macro.<sup><a href="#note281"><b>281)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vscanf function returns the value of the macro EOF if an input failure occurs
  before the first conversion (if any) has completed. Otherwise, the vscanf function
@@ -16713,7 +16713,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  zero, in the event of an early matching failure.
 
 <h5><a name="7.21.6.12" href="#7.21.6.12">7.21.6.12 The vsnprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.16">&lt;stdarg.h&gt;</a>
@@ -16722,7 +16722,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
              const char * restrict format,
              va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vsnprintf function is equivalent to snprintf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
@@ -16730,7 +16730,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  va_end macro.<sup><a href="#note281"><b>281)</b></a></sup> If copying takes place between objects that overlap, the behavior is
  undefined.
 <!--page 347 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vsnprintf function returns the number of characters that would have been written
  had n been sufficiently large, not counting the terminating null character, or a negative
@@ -16738,7 +16738,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  completely written if and only if the returned value is nonnegative and less than n.
 
 <h5><a name="7.21.6.13" href="#7.21.6.13">7.21.6.13 The vsprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.16">&lt;stdarg.h&gt;</a>
@@ -16747,20 +16747,20 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               const char * restrict format,
               va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vsprintf function is equivalent to sprintf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vsprintf function does not invoke the
  va_end macro.<sup><a href="#note281"><b>281)</b></a></sup> If copying takes place between objects that overlap, the behavior is
  undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vsprintf function returns the number of characters written in the array, not
  counting the terminating null character, or a negative value if an encoding error occurred.
 
 <h5><a name="7.21.6.14" href="#7.21.6.14">7.21.6.14 The vsscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.16">&lt;stdarg.h&gt;</a>
@@ -16769,13 +16769,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               const char * restrict format,
               va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vsscanf function is equivalent to sscanf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vsscanf function does not invoke the
  va_end macro.<sup><a href="#note281"><b>281)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vsscanf function returns the value of the macro EOF if an input failure occurs
  before the first conversion (if any) has completed. Otherwise, the vsscanf function
@@ -16786,19 +16786,19 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.21.7" href="#7.21.7">7.21.7 Character input/output functions</a></h4>
 
 <h5><a name="7.21.7.1" href="#7.21.7.1">7.21.7.1 The fgetc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          int fgetc(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If the end-of-file indicator for the input stream pointed to by stream is not set and a
  next character is present, the fgetc function obtains that character as an unsigned
  char converted to an int and advances the associated file position indicator for the
  stream (if defined).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If the end-of-file indicator for the stream is set, or if the stream is at end-of-file, the end-
  of-file indicator for the stream is set and the fgetc function returns EOF. Otherwise, the
@@ -16806,25 +16806,25 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If a read error occurs, the error indicator for the stream is set and the fgetc function
  returns EOF.<sup><a href="#note282"><b>282)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note282" href="#note282">282)</a> An end-of-file and a read error can be distinguished by use of the feof and ferror functions.
 </small>
 
 <h5><a name="7.21.7.2" href="#7.21.7.2">7.21.7.2 The fgets function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          char *fgets(char * restrict s, int n,
               FILE * restrict stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fgets function reads at most one less than the number of characters specified by n
  from the stream pointed to by stream into the array pointed to by s. No additional
  characters are read after a new-line character (which is retained) or after end-of-file. A
  null character is written immediately after the last character read into the array.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fgets function returns s if successful. If end-of-file is encountered and no
  characters have been read into the array, the contents of the array remain unchanged and a
@@ -16834,55 +16834,55 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 349 -->
 
 <h5><a name="7.21.7.3" href="#7.21.7.3">7.21.7.3 The fputc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          int fputc(int c, FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fputc function writes the character specified by c (converted to an unsigned
  char) to the output stream pointed to by stream, at the position indicated by the
  associated file position indicator for the stream (if defined), and advances the indicator
  appropriately. If the file cannot support positioning requests, or if the stream was opened
  with append mode, the character is appended to the output stream.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fputc function returns the character written. If a write error occurs, the error
  indicator for the stream is set and fputc returns EOF.
 
 <h5><a name="7.21.7.4" href="#7.21.7.4">7.21.7.4 The fputs function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          int fputs(const char * restrict s,
               FILE * restrict stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fputs function writes the string pointed to by s to the stream pointed to by
  stream. The terminating null character is not written.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fputs function returns EOF if a write error occurs; otherwise it returns a
  nonnegative value.
 
 <h5><a name="7.21.7.5" href="#7.21.7.5">7.21.7.5 The getc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          int getc(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The getc function is equivalent to fgetc, except that if it is implemented as a macro, it
  may evaluate stream more than once, so the argument should never be an expression
  with side effects.
 <!--page 350 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The getc function returns the next character from the input stream pointed to by
  stream. If the stream is at end-of-file, the end-of-file indicator for the stream is set and
@@ -16890,16 +16890,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  getc returns EOF.
 
 <h5><a name="7.21.7.6" href="#7.21.7.6">7.21.7.6 The getchar function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;stdio.h&gt;</a>
         int getchar(void);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The getchar function is equivalent to getc with the argument stdin.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The getchar function returns the next character from the input stream pointed to by
  stdin. If the stream is at end-of-file, the end-of-file indicator for the stream is set and
@@ -16907,63 +16907,63 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  getchar returns EOF.                                                                       *
 
 <h5><a name="7.21.7.7" href="#7.21.7.7">7.21.7.7 The putc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;stdio.h&gt;</a>
         int putc(int c, FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The putc function is equivalent to fputc, except that if it is implemented as a macro, it
  may evaluate stream more than once, so that argument should never be an expression
  with side effects.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The putc function returns the character written. If a write error occurs, the error
  indicator for the stream is set and putc returns EOF.
 
 <h5><a name="7.21.7.8" href="#7.21.7.8">7.21.7.8 The putchar function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;stdio.h&gt;</a>
         int putchar(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The putchar function is equivalent to putc with the second argument stdout.
 <!--page 351 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The putchar function returns the character written. If a write error occurs, the error
  indicator for the stream is set and putchar returns EOF.
 
 <h5><a name="7.21.7.9" href="#7.21.7.9">7.21.7.9 The puts function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          int puts(const char *s);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The puts function writes the string pointed to by s to the stream pointed to by stdout,
  and appends a new-line character to the output. The terminating null character is not
  written.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The puts function returns EOF if a write error occurs; otherwise it returns a nonnegative
  value.
 
 <h5><a name="7.21.7.10" href="#7.21.7.10">7.21.7.10 The ungetc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          int ungetc(int c, FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ungetc function pushes the character specified by c (converted to an unsigned
  char) back onto the input stream pointed to by stream. Pushed-back characters will be
@@ -16988,20 +16988,20 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  For a binary stream, its file position indicator is decremented by each successful call to
  the ungetc function; if its value was zero before a call, it is indeterminate after the
  call.<sup><a href="#note283"><b>283)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  The ungetc function returns the character pushed back after conversion, or EOF if the
  operation fails.
 <p><b> Forward references</b>: file positioning functions (<a href="#7.21.9">7.21.9</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note283" href="#note283">283)</a> See ''future library directions'' (<a href="#7.30.9">7.30.9</a>).
 </small>
 
 <h4><a name="7.21.8" href="#7.21.8">7.21.8 Direct input/output functions</a></h4>
 
 <h5><a name="7.21.8.1" href="#7.21.8.1">7.21.8.1 The fread function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.21">&lt;stdio.h&gt;</a>
@@ -17009,7 +17009,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                size_t size, size_t nmemb,
                FILE * restrict stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fread function reads, into the array pointed to by ptr, up to nmemb elements
  whose size is specified by size, from the stream pointed to by stream. For each
@@ -17018,7 +17018,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  indicator for the stream (if defined) is advanced by the number of characters successfully
  read. If an error occurs, the resulting value of the file position indicator for the stream is
  indeterminate. If a partial element is read, its value is indeterminate.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fread function returns the number of elements successfully read, which may be
  less than nmemb if a read error or end-of-file is encountered. If size or nmemb is zero,
@@ -17031,7 +17031,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 353 -->
 
 <h5><a name="7.21.8.2" href="#7.21.8.2">7.21.8.2 The fwrite function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
@@ -17039,7 +17039,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               size_t size, size_t nmemb,
               FILE * restrict stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fwrite function writes, from the array pointed to by ptr, up to nmemb elements
  whose size is specified by size, to the stream pointed to by stream. For each object,
@@ -17048,7 +17048,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  stream (if defined) is advanced by the number of characters successfully written. If an
  error occurs, the resulting value of the file position indicator for the stream is
  indeterminate.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fwrite function returns the number of elements successfully written, which will be
  less than nmemb only if a write error is encountered. If size or nmemb is zero,
@@ -17057,20 +17057,20 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.21.9" href="#7.21.9">7.21.9 File positioning functions</a></h4>
 
 <h5><a name="7.21.9.1" href="#7.21.9.1">7.21.9.1 The fgetpos function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          int fgetpos(FILE * restrict stream,
               fpos_t * restrict pos);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fgetpos function stores the current values of the parse state (if any) and file
  position indicator for the stream pointed to by stream in the object pointed to by pos.
  The values stored contain unspecified information usable by the fsetpos function for
  repositioning the stream to its position at the time of the call to the fgetpos function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If successful, the fgetpos function returns zero; on failure, the fgetpos function
  returns nonzero and stores an implementation-defined positive value in errno.
@@ -17078,13 +17078,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 354 -->
 
 <h5><a name="7.21.9.2" href="#7.21.9.2">7.21.9.2 The fseek function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;stdio.h&gt;</a>
         int fseek(FILE *stream, long int offset, int whence);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fseek function sets the file position indicator for the stream pointed to by stream.
  If a read or write error occurs, the error indicator for the stream is set and fseek fails.
@@ -17103,19 +17103,19 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  effects of the ungetc function on the stream, clears the end-of-file indicator for the
  stream, and then establishes the new position. After a successful fseek call, the next
  operation on an update stream may be either input or output.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  The fseek function returns nonzero only for a request that cannot be satisfied.
 <p><b> Forward references</b>: the ftell function (<a href="#7.21.9.4">7.21.9.4</a>).
 
 <h5><a name="7.21.9.3" href="#7.21.9.3">7.21.9.3 The fsetpos function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;stdio.h&gt;</a>
         int fsetpos(FILE *stream, const fpos_t *pos);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fsetpos function sets the mbstate_t object (if any) and file position indicator
  for the stream pointed to by stream according to the value of the object pointed to by
@@ -17128,19 +17128,19 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  parse state and position. After a successful fsetpos call, the next operation on an
 <!--page 355 -->
  update stream may be either input or output.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  If successful, the fsetpos function returns zero; on failure, the fsetpos function
  returns nonzero and stores an implementation-defined positive value in errno.
 
 <h5><a name="7.21.9.4" href="#7.21.9.4">7.21.9.4 The ftell function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          long int ftell(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ftell function obtains the current value of the file position indicator for the stream
  pointed to by stream. For a binary stream, the value is the number of characters from
@@ -17149,20 +17149,20 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  stream to its position at the time of the ftell call; the difference between two such
  return values is not necessarily a meaningful measure of the number of characters written
  or read.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If successful, the ftell function returns the current value of the file position indicator
  for the stream. On failure, the ftell function returns -1L and stores an
  implementation-defined positive value in errno.
 
 <h5><a name="7.21.9.5" href="#7.21.9.5">7.21.9.5 The rewind function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          void rewind(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The rewind function sets the file position indicator for the stream pointed to by
  stream to the beginning of the file. It is equivalent to
@@ -17170,7 +17170,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          (void)fseek(stream, 0L, SEEK_SET)
 </pre>
  except that the error indicator for the stream is also cleared.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The rewind function returns no value.
 <!--page 356 -->
@@ -17178,59 +17178,59 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.21.10" href="#7.21.10">7.21.10 Error-handling functions</a></h4>
 
 <h5><a name="7.21.10.1" href="#7.21.10.1">7.21.10.1 The clearerr function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;stdio.h&gt;</a>
         void clearerr(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The clearerr function clears the end-of-file and error indicators for the stream pointed
  to by stream.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The clearerr function returns no value.
 
 <h5><a name="7.21.10.2" href="#7.21.10.2">7.21.10.2 The feof function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;stdio.h&gt;</a>
         int feof(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The feof function tests the end-of-file indicator for the stream pointed to by stream.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The feof function returns nonzero if and only if the end-of-file indicator is set for
  stream.
 
 <h5><a name="7.21.10.3" href="#7.21.10.3">7.21.10.3 The ferror function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.21">&lt;stdio.h&gt;</a>
         int ferror(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ferror function tests the error indicator for the stream pointed to by stream.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The ferror function returns nonzero if and only if the error indicator is set for
  stream.
 <!--page 357 -->
 
 <h5><a name="7.21.10.4" href="#7.21.10.4">7.21.10.4 The perror function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          void perror(const char *s);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The perror function maps the error number in the integer expression errno to an
  error message. It writes a sequence of characters to the standard error stream thus: first
@@ -17238,7 +17238,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  string pointed to by s followed by a colon (:) and a space; then an appropriate error
  message string followed by a new-line character. The contents of the error message
  strings are the same as those returned by the strerror function with argument errno.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The perror function returns no value.
 <p><b> Forward references</b>: the strerror function (<a href="#7.23.6.2">7.23.6.2</a>).
@@ -17291,7 +17291,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 359 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note284" href="#note284">284)</a> See ''future library directions'' (<a href="#7.30.10">7.30.10</a>).
 </small>
 
@@ -17302,26 +17302,26 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  behavior is undefined.
 
 <h5><a name="7.22.1.1" href="#7.22.1.1">7.22.1.1 The atof function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.22">&lt;stdlib.h&gt;</a>
          double atof(const char *nptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The atof function converts the initial portion of the string pointed to by nptr to
  double representation. Except for the behavior on error, it is equivalent to
 <pre>
          strtod(nptr, (char **)NULL)
 </pre>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The atof function returns the converted value.
 <p><b> Forward references</b>: the strtod, strtof, and strtold functions (<a href="#7.22.1.3">7.22.1.3</a>).
 
 <h5><a name="7.22.1.2" href="#7.22.1.2">7.22.1.2 The atoi, atol, and atoll functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.22">&lt;stdlib.h&gt;</a>
@@ -17329,7 +17329,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          long int atol(const char *nptr);
          long long int atoll(const char *nptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The atoi, atol, and atoll functions convert the initial portion of the string pointed
  to by nptr to int, long int, and long long int representation, respectively.
@@ -17339,7 +17339,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          atol: strtol(nptr, (char **)NULL, 10)
          atoll: strtoll(nptr, (char **)NULL, 10)
 </pre>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The atoi, atol, and atoll functions return the converted value.
 <p><b> Forward references</b>: the strtol, strtoll, strtoul, and strtoull functions
@@ -17347,7 +17347,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 360 -->
 
 <h5><a name="7.22.1.3" href="#7.22.1.3">7.22.1.3 The strtod, strtof, and strtold functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.22">&lt;stdlib.h&gt;</a>
@@ -17358,7 +17358,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         long double strtold(const char * restrict nptr,
              char ** restrict endptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strtod, strtof, and strtold functions convert the initial portion of the string
  pointed to by nptr to double, float, and long double representation,
@@ -17416,7 +17416,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If the subject sequence is empty or does not have the expected form, no conversion is
  performed; the value of nptr is stored in the object pointed to by endptr, provided
  that endptr is not a null pointer.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 8 -->
  If the subject sequence has the hexadecimal form, FLT_RADIX is not a power of 2, and
  the result is not exactly representable, the result should be one of the two numbers in the
@@ -17435,7 +17435,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 362 -->
  stipulation that the error with respect to D should have a correct sign for the current
  rounding direction.<sup><a href="#note287"><b>287)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 10 -->
  The functions return the converted value, if any. If no conversion could be performed,
  zero is returned. If the correct value overflows and default rounding is in effect (<a href="#7.12.1">7.12.1</a>),
@@ -17445,7 +17445,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  no greater than the smallest normalized positive number in the return type; whether
  errno acquires the value ERANGE is implementation-defined.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note285" href="#note285">285)</a> It is unspecified whether a minus-signed sequence is converted to a negative number directly or by
  negating the value resulting from converting the corresponding unsigned sequence (see <a href="#F.5">F.5</a>); the two
  methods may yield different results if rounding is toward positive or negative infinity. In either case,
@@ -17459,7 +17459,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="7.22.1.4" href="#7.22.1.4">7.22.1.4 The strtol, strtoll, strtoul, and strtoull functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.22">&lt;stdlib.h&gt;</a>
@@ -17480,7 +17480,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               char ** restrict endptr,
               int base);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strtol, strtoll, strtoul, and strtoull functions convert the initial
  portion of the string pointed to by nptr to long int, long long int, unsigned
@@ -17525,7 +17525,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If the subject sequence is empty or does not have the expected form, no conversion is
  performed; the value of nptr is stored in the object pointed to by endptr, provided
  that endptr is not a null pointer.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 8 -->
  The strtol, strtoll, strtoul, and strtoull functions return the converted
  value, if any. If no conversion could be performed, zero is returned. If the correct value
@@ -17537,40 +17537,40 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.22.2" href="#7.22.2">7.22.2 Pseudo-random sequence generation functions</a></h4>
 
 <h5><a name="7.22.2.1" href="#7.22.2.1">7.22.2.1 The rand function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.22">&lt;stdlib.h&gt;</a>
          int rand(void);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The rand function computes a sequence of pseudo-random integers in the range 0 to
  RAND_MAX.<sup><a href="#note288"><b>288)</b></a></sup>
 <p><!--para 3 -->
  The rand function is not required to avoid data races. The implementation shall behave
  as if no library function calls the rand function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The rand function returns a pseudo-random integer.
-<h6>Environmental limits</h6>
+<p><b>Environmental limits</b>
 <p><!--para 5 -->
  The value of the RAND_MAX macro shall be at least 32767.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note288" href="#note288">288)</a> There are no guarantees as to the quality of the random sequence produced and some implementations
  are known to produce sequences with distressingly non-random low-order bits. Applications with
  particular requirements should use a generator that is known to be sufficient for their needs.
 </small>
 
 <h5><a name="7.22.2.2" href="#7.22.2.2">7.22.2.2 The srand function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.22">&lt;stdlib.h&gt;</a>
          void srand(unsigned int seed);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The srand function uses the argument as a seed for a new sequence of pseudo-random
  numbers to be returned by subsequent calls to rand. If srand is then called with the
@@ -17579,7 +17579,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  as when srand is first called with a seed value of 1.
 <p><!--para 3 -->
  The implementation shall behave as if no library function calls the srand function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The srand function returns no value.
  
@@ -17619,70 +17619,70 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  returned pointer shall not be used to access an object.
 
 <h5><a name="7.22.3.1" href="#7.22.3.1">7.22.3.1 The aligned_alloc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.22">&lt;stdlib.h&gt;</a>
          void *aligned_alloc(size_t alignment, size_t size);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The aligned_alloc function allocates space for an object whose alignment is
  specified by alignment, whose size is specified by size, and whose value is
  indeterminate. The value of alignment shall be a valid alignment supported by the
  implementation and the value of size shall be an integral multiple of alignment.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The aligned_alloc function returns either a null pointer or a pointer to the allocated
  space.
 <!--page 366 -->
 
 <h5><a name="7.22.3.2" href="#7.22.3.2">7.22.3.2 The calloc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.22">&lt;stdlib.h&gt;</a>
          void *calloc(size_t nmemb, size_t size);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The calloc function allocates space for an array of nmemb objects, each of whose size
  is size. The space is initialized to all bits zero.<sup><a href="#note289"><b>289)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The calloc function returns either a null pointer or a pointer to the allocated space.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note289" href="#note289">289)</a> Note that this need not be the same as the representation of floating-point zero or a null pointer
  constant.
 </small>
 
 <h5><a name="7.22.3.3" href="#7.22.3.3">7.22.3.3 The free function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.22">&lt;stdlib.h&gt;</a>
          void free(void *ptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The free function causes the space pointed to by ptr to be deallocated, that is, made
  available for further allocation. If ptr is a null pointer, no action occurs. Otherwise, if
  the argument does not match a pointer earlier returned by a memory management
  function, or if the space has been deallocated by a call to free or realloc, the
  behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The free function returns no value.
 
 <h5><a name="7.22.3.4" href="#7.22.3.4">7.22.3.4 The malloc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.22">&lt;stdlib.h&gt;</a>
          void *malloc(size_t size);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The malloc function allocates space for an object whose size is specified by size and
  whose value is indeterminate.
@@ -17691,18 +17691,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
  
 <!--page 367 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The malloc function returns either a null pointer or a pointer to the allocated space.
 
 <h5><a name="7.22.3.5" href="#7.22.3.5">7.22.3.5 The realloc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.22">&lt;stdlib.h&gt;</a>
          void *realloc(void *ptr, size_t size);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The realloc function deallocates the old object pointed to by ptr and returns a
  pointer to a new object that has the size specified by size. The contents of the new
@@ -17715,7 +17715,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  management function, or if the space has been deallocated by a call to the free or
  realloc function, the behavior is undefined. If memory for the new object cannot be
  allocated, the old object is not deallocated and its value is unchanged.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The realloc function returns a pointer to the new object (which may have the same
  value as a pointer to the old object), or a null pointer if the new object could not be
@@ -17724,13 +17724,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.22.4" href="#7.22.4">7.22.4 Communication with the environment</a></h4>
 
 <h5><a name="7.22.4.1" href="#7.22.4.1">7.22.4.1 The abort function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.22">&lt;stdlib.h&gt;</a>
          _Noreturn void abort(void);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The abort function causes abnormal program termination to occur, unless the signal
  SIGABRT is being caught and the signal handler does not return. Whether open streams
@@ -17739,50 +17739,50 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  unsuccessful termination is returned to the host environment by means of the function
  call raise(SIGABRT).
 <!--page 368 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The abort function does not return to its caller.
 
 <h5><a name="7.22.4.2" href="#7.22.4.2">7.22.4.2 The atexit function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.22">&lt;stdlib.h&gt;</a>
         int atexit(void (*func)(void));
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The atexit function registers the function pointed to by func, to be called without
  arguments at normal program termination.<sup><a href="#note290"><b>290)</b></a></sup>
-<h6>Environmental limits</h6>
+<p><b>Environmental limits</b>
 <p><!--para 3 -->
  The implementation shall support the registration of at least 32 functions.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The atexit function returns zero if the registration succeeds, nonzero if it fails.
 <p><b> Forward references</b>: the at_quick_exit function (<a href="#7.22.4.3">7.22.4.3</a>), the exit function
  (<a href="#7.22.4.4">7.22.4.4</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note290" href="#note290">290)</a> The atexit function registrations are distinct from the at_quick_exit registrations, so
  applications may need to call both registration functions with the same argument.
 </small>
 
 <h5><a name="7.22.4.3" href="#7.22.4.3">7.22.4.3 The at_quick_exit function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.22">&lt;stdlib.h&gt;</a>
         int at_quick_exit(void (*func)(void));
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The at_quick_exit function registers the function pointed to by func, to be called
  without arguments should quick_exit be called.<sup><a href="#note291"><b>291)</b></a></sup>
-<h6>Environmental limits</h6>
+<p><b>Environmental limits</b>
 <p><!--para 3 -->
  The implementation shall support the registration of at least 32 functions.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The at_quick_exit function returns zero if the registration succeeds, nonzero if it
  fails.
@@ -17791,19 +17791,19 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 369 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note291" href="#note291">291)</a> The at_quick_exit function registrations are distinct from the atexit registrations, so
  applications may need to call both registration functions with the same argument.
 </small>
 
 <h5><a name="7.22.4.4" href="#7.22.4.4">7.22.4.4 The exit function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.22">&lt;stdlib.h&gt;</a>
          _Noreturn void exit(int status);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The exit function causes normal program termination to occur. No functions registered
  by the at_quick_exit function are called. If a program calls the exit function
@@ -17824,23 +17824,23 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  returned. If the value of status is EXIT_FAILURE, an implementation-defined form
  of the status unsuccessful termination is returned. Otherwise the status returned is
  implementation-defined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  The exit function cannot return to its caller.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note292" href="#note292">292)</a> Each function is called as many times as it was registered, and in the correct order with respect to
  other registered functions.
 </small>
 
 <h5><a name="7.22.4.5" href="#7.22.4.5">7.22.4.5 The _Exit function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.22">&lt;stdlib.h&gt;</a>
          _Noreturn void _Exit(int status);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The _Exit function causes normal program termination to occur and control to be
  returned to the host environment. No functions registered by the atexit function, the
@@ -17852,18 +17852,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  the exit function (<a href="#7.22.4.4">7.22.4.4</a>). Whether open streams with unwritten buffered data are
  flushed, open streams are closed, or temporary files are removed is implementation-
  defined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The _Exit function cannot return to its caller.
 
 <h5><a name="7.22.4.6" href="#7.22.4.6">7.22.4.6 The getenv function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.22">&lt;stdlib.h&gt;</a>
          char *getenv(const char *name);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The getenv function searches an environment list, provided by the host environment,
  for a string that matches the string pointed to by name. The set of environment names
@@ -17872,25 +17872,25 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  the environment list.<sup><a href="#note293"><b>293)</b></a></sup>
 <p><!--para 3 -->
  The implementation shall behave as if no library function calls the getenv function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The getenv function returns a pointer to a string associated with the matched list
  member. The string pointed to shall not be modified by the program, but may be
  overwritten by a subsequent call to the getenv function. If the specified name cannot
  be found, a null pointer is returned.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note293" href="#note293">293)</a> Many implementations provide non-standard functions that modify the environment list.
 </small>
 
 <h5><a name="7.22.4.7" href="#7.22.4.7">7.22.4.7 The quick_exit function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.22">&lt;stdlib.h&gt;</a>
          _Noreturn void quick_exit(int status);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The quick_exit function causes normal program termination to occur. No functions
  registered by the atexit function or signal handlers registered by the signal function
@@ -17908,30 +17908,30 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 4 -->
  Then control is returned to the host environment by means of the function call
  _Exit(status).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The quick_exit function cannot return to its caller.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note294" href="#note294">294)</a> Each function is called as many times as it was registered, and in the correct order with respect to
  other registered functions.
 </small>
 
 <h5><a name="7.22.4.8" href="#7.22.4.8">7.22.4.8 The system function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.22">&lt;stdlib.h&gt;</a>
          int system(const char *string);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If string is a null pointer, the system function determines whether the host
  environment has a command processor. If string is not a null pointer, the system
  function passes the string pointed to by string to that command processor to be
  executed in a manner which the implementation shall document; this might then cause the
  program calling system to behave in a non-conforming manner or to terminate.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If the argument is a null pointer, the system function returns nonzero only if a
  command processor is available. If the argument is not a null pointer, and the system
@@ -17969,7 +17969,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  comparison function, and also between any call to the comparison function and any
  movement of the objects passed as arguments to that call.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note295" href="#note295">295)</a> That is, if the value passed is p, then the following expressions are always nonzero:
 
 <pre>
@@ -17981,7 +17981,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="7.22.5.1" href="#7.22.5.1">7.22.5.1 The bsearch function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.22">&lt;stdlib.h&gt;</a>
@@ -17989,7 +17989,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                size_t nmemb, size_t size,
                int (*compar)(const void *, const void *));
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The bsearch function searches an array of nmemb objects, the initial element of which
  is pointed to by base, for an element that matches the object pointed to by key. The
@@ -18001,7 +18001,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  respectively, to be less than, to match, or to be greater than the array element. The array
  shall consist of: all the elements that compare less than, all the elements that compare
  equal to, and all the elements that compare greater than the key object, in that order.<sup><a href="#note296"><b>296)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The bsearch function returns a pointer to a matching element of the array, or a null
  pointer if no match is found. If two elements compare as equal, which element is
@@ -18010,19 +18010,19 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 373 -->
  matched is unspecified.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note296" href="#note296">296)</a> In practice, the entire array is sorted according to the comparison function.
 </small>
 
 <h5><a name="7.22.5.2" href="#7.22.5.2">7.22.5.2 The qsort function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.22">&lt;stdlib.h&gt;</a>
          void qsort(void *base, size_t nmemb, size_t size,
               int (*compar)(const void *, const void *));
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The qsort function sorts an array of nmemb objects, the initial element of which is
  pointed to by base. The size of each object is specified by size.
@@ -18034,14 +18034,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  or greater than the second.
 <p><!--para 4 -->
  If two elements compare as equal, their order in the resulting sorted array is unspecified.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The qsort function returns no value.
 
 <h4><a name="7.22.6" href="#7.22.6">7.22.6 Integer arithmetic functions</a></h4>
 
 <h5><a name="7.22.6.1" href="#7.22.6.1">7.22.6.1 The abs, labs and llabs functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.22">&lt;stdlib.h&gt;</a>
@@ -18049,11 +18049,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          long int labs(long int j);
          long long int llabs(long long int j);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The abs, labs, and llabs functions compute the absolute value of an integer j. If the
  result cannot be represented, the behavior is undefined.<sup><a href="#note297"><b>297)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The abs, labs, and llabs, functions return the absolute value.
  
@@ -18062,12 +18062,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 374 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note297" href="#note297">297)</a> The absolute value of the most negative number cannot be represented in two's complement.
 </small>
 
 <h5><a name="7.22.6.2" href="#7.22.6.2">7.22.6.2 The div, ldiv, and lldiv functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.22">&lt;stdlib.h&gt;</a>
@@ -18075,11 +18075,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
           ldiv_t ldiv(long int numer, long int denom);
           lldiv_t lldiv(long long int numer, long long int denom);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The div, ldiv, and lldiv, functions compute numer / denom and numer %
  denom in a single operation.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The div, ldiv, and lldiv functions return a structure of type div_t, ldiv_t, and
  lldiv_t, respectively, comprising both the quotient and the remainder. The structures
@@ -18098,19 +18098,19 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  if encodings have state dependency, and zero otherwise.<sup><a href="#note298"><b>298)</b></a></sup> Changing the LC_CTYPE
  category causes the conversion state of these functions to be indeterminate.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note298" href="#note298">298)</a> If the locale employs special bytes to change the shift state, these bytes do not produce separate wide
  character codes, but are grouped with an adjacent multibyte character.
 </small>
 
 <h5><a name="7.22.7.1" href="#7.22.7.1">7.22.7.1 The mblen function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.22">&lt;stdlib.h&gt;</a>
           int mblen(const char *s, size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If s is not a null pointer, the mblen function determines the number of bytes contained
  in the multibyte character pointed to by s. Except that the conversion state of the
@@ -18125,7 +18125,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
 <p><!--para 3 -->
  The implementation shall behave as if no library function calls the mblen function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  If s is a null pointer, the mblen function returns a nonzero or zero value, if multibyte
  character encodings, respectively, do or do not have state-dependent encodings. If s is
@@ -18136,7 +18136,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: the mbtowc function (<a href="#7.22.7.2">7.22.7.2</a>).
 
 <h5><a name="7.22.7.2" href="#7.22.7.2">7.22.7.2 The mbtowc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.22">&lt;stdlib.h&gt;</a>
@@ -18144,7 +18144,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               const char * restrict s,
               size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If s is not a null pointer, the mbtowc function inspects at most n bytes beginning with
  the byte pointed to by s to determine the number of bytes needed to complete the next
@@ -18155,7 +18155,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  character, the function is left in the initial conversion state.
 <p><!--para 3 -->
  The implementation shall behave as if no library function calls the mbtowc function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  If s is a null pointer, the mbtowc function returns a nonzero or zero value, if multibyte
  character encodings, respectively, do or do not have state-dependent encodings. If s is
@@ -18169,13 +18169,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 376 -->
 
 <h5><a name="7.22.7.3" href="#7.22.7.3">7.22.7.3 The wctomb function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.22">&lt;stdlib.h&gt;</a>
         int wctomb(char *s, wchar_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wctomb function determines the number of bytes needed to represent the multibyte
  character corresponding to the wide character given by wc (including any shift
@@ -18186,7 +18186,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  conversion state.
 <p><!--para 3 -->
  The implementation shall behave as if no library function calls the wctomb function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  If s is a null pointer, the wctomb function returns a nonzero or zero value, if multibyte
  character encodings, respectively, do or do not have state-dependent encodings. If s is
@@ -18202,7 +18202,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  the current locale.
 
 <h5><a name="7.22.8.1" href="#7.22.8.1">7.22.8.1 The mbstowcs function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.22">&lt;stdlib.h&gt;</a>
@@ -18210,7 +18210,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
              const char * restrict s,
              size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The mbstowcs function converts a sequence of multibyte characters that begins in the
  initial shift state from the array pointed to by s into a sequence of corresponding wide
@@ -18223,18 +18223,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 3 -->
  No more than n elements will be modified in the array pointed to by pwcs. If copying
  takes place between objects that overlap, the behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  If an invalid multibyte character is encountered, the mbstowcs function returns
  (size_t)(-1). Otherwise, the mbstowcs function returns the number of array
  elements modified, not including a terminating null wide character, if any.<sup><a href="#note299"><b>299)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note299" href="#note299">299)</a> The array will not be null-terminated if the value returned is n.
 </small>
 
 <h5><a name="7.22.8.2" href="#7.22.8.2">7.22.8.2 The wcstombs function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.22">&lt;stdlib.h&gt;</a>
@@ -18242,7 +18242,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                const wchar_t * restrict pwcs,
                size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcstombs function converts a sequence of wide characters from the array pointed
  to by pwcs into a sequence of corresponding multibyte characters that begins in the
@@ -18253,7 +18253,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 3 -->
  No more than n bytes will be modified in the array pointed to by s. If copying takes place
  between objects that overlap, the behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  If a wide character is encountered that does not correspond to a valid multibyte character,
  the wcstombs function returns (size_t)(-1). Otherwise, the wcstombs function
@@ -18288,14 +18288,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  unsigned char (and therefore every possible object representation is valid and has a
  different value).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note300" href="#note300">300)</a> See ''future library directions'' (<a href="#7.30.11">7.30.11</a>).
 </small>
 
 <h4><a name="7.23.2" href="#7.23.2">7.23.2 Copying functions</a></h4>
 
 <h5><a name="7.23.2.1" href="#7.23.2.1">7.23.2.1 The memcpy function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.23">&lt;string.h&gt;</a>
@@ -18303,12 +18303,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                const void * restrict s2,
                size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The memcpy function copies n characters from the object pointed to by s2 into the
  object pointed to by s1. If copying takes place between objects that overlap, the behavior
  is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The memcpy function returns the value of s1.
  
@@ -18318,42 +18318,42 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 379 -->
 
 <h5><a name="7.23.2.2" href="#7.23.2.2">7.23.2.2 The memmove function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.23">&lt;string.h&gt;</a>
          void *memmove(void *s1, const void *s2, size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The memmove function copies n characters from the object pointed to by s2 into the
  object pointed to by s1. Copying takes place as if the n characters from the object
  pointed to by s2 are first copied into a temporary array of n characters that does not
  overlap the objects pointed to by s1 and s2, and then the n characters from the
  temporary array are copied into the object pointed to by s1.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The memmove function returns the value of s1.
 
 <h5><a name="7.23.2.3" href="#7.23.2.3">7.23.2.3 The strcpy function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.23">&lt;string.h&gt;</a>
          char *strcpy(char * restrict s1,
               const char * restrict s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strcpy function copies the string pointed to by s2 (including the terminating null
  character) into the array pointed to by s1. If copying takes place between objects that
  overlap, the behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strcpy function returns the value of s1.
 
 <h5><a name="7.23.2.4" href="#7.23.2.4">7.23.2.4 The strncpy function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.23">&lt;string.h&gt;</a>
@@ -18361,7 +18361,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               const char * restrict s2,
               size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strncpy function copies not more than n characters (characters that follow a null
  character are not copied) from the array pointed to by s2 to the array pointed to by
@@ -18371,11 +18371,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If the array pointed to by s2 is a string that is shorter than n characters, null characters
  are appended to the copy in the array pointed to by s1, until n characters in all have been
  written.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The strncpy function returns the value of s1.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note301" href="#note301">301)</a> Thus, if there is no null character in the first n characters of the array pointed to by s2, the result will
  not be null-terminated.
 </small>
@@ -18383,25 +18383,25 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.23.3" href="#7.23.3">7.23.3 Concatenation functions</a></h4>
 
 <h5><a name="7.23.3.1" href="#7.23.3.1">7.23.3.1 The strcat function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.23">&lt;string.h&gt;</a>
           char *strcat(char * restrict s1,
                const char * restrict s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strcat function appends a copy of the string pointed to by s2 (including the
  terminating null character) to the end of the string pointed to by s1. The initial character
  of s2 overwrites the null character at the end of s1. If copying takes place between
  objects that overlap, the behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strcat function returns the value of s1.
 
 <h5><a name="7.23.3.2" href="#7.23.3.2">7.23.3.2 The strncat function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.23">&lt;string.h&gt;</a>
@@ -18409,7 +18409,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                const char * restrict s2,
                size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strncat function appends not more than n characters (a null character and
  characters that follow it are not appended) from the array pointed to by s2 to the end of
@@ -18418,12 +18418,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 381 -->
  takes place between objects that overlap, the behavior is undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strncat function returns the value of s1.
 <p><b> Forward references</b>: the strlen function (<a href="#7.23.6.3">7.23.6.3</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note302" href="#note302">302)</a> Thus, the maximum number of characters that can end up in the array pointed to by s1 is
  strlen(s1)+n+1.
 </small>
@@ -18436,40 +18436,40 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  compared.
 
 <h5><a name="7.23.4.1" href="#7.23.4.1">7.23.4.1 The memcmp function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.23">&lt;string.h&gt;</a>
          int memcmp(const void *s1, const void *s2, size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The memcmp function compares the first n characters of the object pointed to by s1 to
  the first n characters of the object pointed to by s2.<sup><a href="#note303"><b>303)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The memcmp function returns an integer greater than, equal to, or less than zero,
  accordingly as the object pointed to by s1 is greater than, equal to, or less than the object
  pointed to by s2.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note303" href="#note303">303)</a> The contents of ''holes'' used as padding for purposes of alignment within structure objects are
  indeterminate. Strings shorter than their allocated space and unions may also cause problems in
  comparison.
 </small>
 
 <h5><a name="7.23.4.2" href="#7.23.4.2">7.23.4.2 The strcmp function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.23">&lt;string.h&gt;</a>
          int strcmp(const char *s1, const char *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strcmp function compares the string pointed to by s1 to the string pointed to by
  s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strcmp function returns an integer greater than, equal to, or less than zero,
  accordingly as the string pointed to by s1 is greater than, equal to, or less than the string
@@ -18478,42 +18478,42 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  pointed to by s2.
 
 <h5><a name="7.23.4.3" href="#7.23.4.3">7.23.4.3 The strcoll function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.23">&lt;string.h&gt;</a>
         int strcoll(const char *s1, const char *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strcoll function compares the string pointed to by s1 to the string pointed to by
  s2, both interpreted as appropriate to the LC_COLLATE category of the current locale.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strcoll function returns an integer greater than, equal to, or less than zero,
  accordingly as the string pointed to by s1 is greater than, equal to, or less than the string
  pointed to by s2 when both are interpreted as appropriate to the current locale.
 
 <h5><a name="7.23.4.4" href="#7.23.4.4">7.23.4.4 The strncmp function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.23">&lt;string.h&gt;</a>
         int strncmp(const char *s1, const char *s2, size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strncmp function compares not more than n characters (characters that follow a
  null character are not compared) from the array pointed to by s1 to the array pointed to
  by s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strncmp function returns an integer greater than, equal to, or less than zero,
  accordingly as the possibly null-terminated array pointed to by s1 is greater than, equal
  to, or less than the possibly null-terminated array pointed to by s2.
 
 <h5><a name="7.23.4.5" href="#7.23.4.5">7.23.4.5 The strxfrm function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.23">&lt;string.h&gt;</a>
@@ -18521,7 +18521,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
              const char * restrict s2,
              size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strxfrm function transforms the string pointed to by s2 and places the resulting
  string into the array pointed to by s1. The transformation is such that if the strcmp
@@ -18532,7 +18532,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  pointed to by s1, including the terminating null character. If n is zero, s1 is permitted to
  be a null pointer. If copying takes place between objects that overlap, the behavior is
  undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strxfrm function returns the length of the transformed string (not including the
  terminating null character). If the value returned is n or more, the contents of the array
@@ -18548,132 +18548,132 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.23.5" href="#7.23.5">7.23.5 Search functions</a></h4>
 
 <h5><a name="7.23.5.1" href="#7.23.5.1">7.23.5.1 The memchr function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.23">&lt;string.h&gt;</a>
          void *memchr(const void *s, int c, size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The memchr function locates the first occurrence of c (converted to an unsigned
  char) in the initial n characters (each interpreted as unsigned char) of the object
  pointed to by s. The implementation shall behave as if it reads the characters sequentially
  and stops as soon as a matching character is found.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The memchr function returns a pointer to the located character, or a null pointer if the
  character does not occur in the object.
 
 <h5><a name="7.23.5.2" href="#7.23.5.2">7.23.5.2 The strchr function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.23">&lt;string.h&gt;</a>
          char *strchr(const char *s, int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strchr function locates the first occurrence of c (converted to a char) in the
  string pointed to by s. The terminating null character is considered to be part of the
  string.
 <!--page 384 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strchr function returns a pointer to the located character, or a null pointer if the
  character does not occur in the string.
 
 <h5><a name="7.23.5.3" href="#7.23.5.3">7.23.5.3 The strcspn function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.23">&lt;string.h&gt;</a>
         size_t strcspn(const char *s1, const char *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strcspn function computes the length of the maximum initial segment of the string
  pointed to by s1 which consists entirely of characters not from the string pointed to by
  s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strcspn function returns the length of the segment.
 
 <h5><a name="7.23.5.4" href="#7.23.5.4">7.23.5.4 The strpbrk function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.23">&lt;string.h&gt;</a>
         char *strpbrk(const char *s1, const char *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strpbrk function locates the first occurrence in the string pointed to by s1 of any
  character from the string pointed to by s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strpbrk function returns a pointer to the character, or a null pointer if no character
  from s2 occurs in s1.
 
 <h5><a name="7.23.5.5" href="#7.23.5.5">7.23.5.5 The strrchr function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.23">&lt;string.h&gt;</a>
         char *strrchr(const char *s, int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strrchr function locates the last occurrence of c (converted to a char) in the
  string pointed to by s. The terminating null character is considered to be part of the
  string.
 <!--page 385 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strrchr function returns a pointer to the character, or a null pointer if c does not
  occur in the string.
 
 <h5><a name="7.23.5.6" href="#7.23.5.6">7.23.5.6 The strspn function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.23">&lt;string.h&gt;</a>
          size_t strspn(const char *s1, const char *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strspn function computes the length of the maximum initial segment of the string
  pointed to by s1 which consists entirely of characters from the string pointed to by s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strspn function returns the length of the segment.
 
 <h5><a name="7.23.5.7" href="#7.23.5.7">7.23.5.7 The strstr function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.23">&lt;string.h&gt;</a>
          char *strstr(const char *s1, const char *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strstr function locates the first occurrence in the string pointed to by s1 of the
  sequence of characters (excluding the terminating null character) in the string pointed to
  by s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strstr function returns a pointer to the located string, or a null pointer if the string
  is not found. If s2 points to a string with zero length, the function returns s1.
 
 <h5><a name="7.23.5.8" href="#7.23.5.8">7.23.5.8 The strtok function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.23">&lt;string.h&gt;</a>
          char *strtok(char * restrict s1,
               const char * restrict s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  A sequence of calls to the strtok function breaks the string pointed to by s1 into a
  sequence of tokens, each of which is delimited by a character from the string pointed to
@@ -18699,7 +18699,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 6 -->
  The strtok function is not required to avoid data races. The implementation shall
  behave as if no library function calls the strtok function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 7 -->
  The strtok function returns a pointer to the first character of a token, or a null pointer
  if there is no token.
@@ -18719,29 +18719,29 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.23.6" href="#7.23.6">7.23.6 Miscellaneous functions</a></h4>
 
 <h5><a name="7.23.6.1" href="#7.23.6.1">7.23.6.1 The memset function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.23">&lt;string.h&gt;</a>
         void *memset(void *s, int c, size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The memset function copies the value of c (converted to an unsigned char) into
  each of the first n characters of the object pointed to by s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The memset function returns the value of s.
 <!--page 387 -->
 
 <h5><a name="7.23.6.2" href="#7.23.6.2">7.23.6.2 The strerror function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.23">&lt;string.h&gt;</a>
          char *strerror(int errnum);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strerror function maps the number in errnum to a message string. Typically,
  the values for errnum come from errno, but strerror shall map any value of type
@@ -18749,23 +18749,23 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 3 -->
  The strerror function is not required to avoid data races. The implementation shall
  behave as if no library function calls the strerror function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The strerror function returns a pointer to the string, the contents of which are locale-
  specific. The array pointed to shall not be modified by the program, but may be
  overwritten by a subsequent call to the strerror function.
 
 <h5><a name="7.23.6.3" href="#7.23.6.3">7.23.6.3 The strlen function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.23">&lt;string.h&gt;</a>
          size_t strlen(const char *s);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strlen function computes the length of the string pointed to by s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strlen function returns the number of characters that precede the terminating null
  character.
@@ -18893,7 +18893,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
              cproj(ldc)                          cprojl(ldc)
 </pre>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note304" href="#note304">304)</a> Like other function-like macros in Standard libraries, each type-generic macro can be suppressed to
  make available the corresponding ordinary function.
 </small>
@@ -19012,98 +19012,98 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.25.2" href="#7.25.2">7.25.2 Initialization functions</a></h4>
 
 <h5><a name="7.25.2.1" href="#7.25.2.1">7.25.2.1 The call_once function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;threads.h&gt;</a>
          void call_once(once_flag *flag, void (*func)(void));
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The call_once function uses the once_flag pointed to by flag to ensure that
  func is called exactly once, the first time the call_once function is called with that
  value of flag. Completion of an effective call to the call_once function synchronizes
  with all subsequent calls to the call_once function with the same value of flag.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The call_once function returns no value.
 
 <h4><a name="7.25.3" href="#7.25.3">7.25.3 Condition variable functions</a></h4>
 
 <h5><a name="7.25.3.1" href="#7.25.3.1">7.25.3.1 The cnd_broadcast function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;threads.h&gt;</a>
          int cnd_broadcast(cnd_t *cond);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cnd_broadcast function unblocks all of the threads that are blocked on the
  condition variable pointed to by cond at the time of the call. If no threads are blocked
  on the condition variable pointed to by cond at the time of the call, the function does
  nothing.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cnd_broadcast function returns thrd_success on success, or thrd_error
  if the request could not be honored.
 
 <h5><a name="7.25.3.2" href="#7.25.3.2">7.25.3.2 The cnd_destroy function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;threads.h&gt;</a>
          void cnd_destroy(cnd_t *cond);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cnd_destroy function releases all resources used by the condition variable
  pointed to by cond. The cnd_destroy function requires that no threads be blocked
  waiting for the condition variable pointed to by cond.
 <!--page 394 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cnd_destroy function returns no value.
 
 <h5><a name="7.25.3.3" href="#7.25.3.3">7.25.3.3 The cnd_init function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.25">&lt;threads.h&gt;</a>
         int cnd_init(cnd_t *cond);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cnd_init function creates a condition variable. If it succeeds it sets the variable
  pointed to by cond to a value that uniquely identifies the newly created condition
  variable. A thread that calls cnd_wait on a newly created condition variable will
  block.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cnd_init function returns thrd_success on success, or thrd_nomem if no
  memory could be allocated for the newly created condition, or thrd_error if the
  request could not be honored.
 
 <h5><a name="7.25.3.4" href="#7.25.3.4">7.25.3.4 The cnd_signal function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.25">&lt;threads.h&gt;</a>
         int cnd_signal(cnd_t *cond);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cnd_signal function unblocks one of the threads that are blocked on the
  condition variable pointed to by cond at the time of the call. If no threads are blocked
  on the condition variable at the time of the call, the function does nothing and return
  success.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cnd_signal function returns thrd_success on success or thrd_error if
  the request could not be honored.
 
 <h5><a name="7.25.3.5" href="#7.25.3.5">7.25.3.5 The cnd_timedwait function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <!--page 395 -->
 <pre>
@@ -19111,7 +19111,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         int cnd_timedwait(cnd_t *cond, mtx_t *mtx,
              const xtime *xt);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cnd_timedwait function atomically unlocks the mutex pointed to by mtx and
  endeavors to block until the condition variable pointed to by cond is signaled by a call to
@@ -19119,20 +19119,20 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  object pointed to by xt. When the calling thread becomes unblocked it locks the variable
  pointed to by mtx before it returns. The cnd_timedwait function requires that the
  mutex pointed to by mtx be locked by the calling thread.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cnd_timedwait function returns thrd_success upon success, or
  thrd_timeout if the time specified in the call was reached without acquiring the
  requested resource, or thrd_error if the request could not be honored.
 
 <h5><a name="7.25.3.6" href="#7.25.3.6">7.25.3.6 The cnd_wait function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;threads.h&gt;</a>
          int cnd_wait(cnd_t *cond, mtx_t *mtx);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The cnd_wait function atomically unlocks the mutex pointed to by mtx and endeavors
  to block until the condition variable pointed to by cond is signaled by a call to
@@ -19140,7 +19140,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  locks the mutex pointed to by mtx before it returns. If the mutex pointed to by mtx is
  not locked by the calling thread, the cnd_wait function will act as if the abort
  function is called.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The cnd_wait function returns thrd_success on success or thrd_error if the
  request could not be honored.
@@ -19148,29 +19148,29 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.25.4" href="#7.25.4">7.25.4 Mutex functions</a></h4>
 
 <h5><a name="7.25.4.1" href="#7.25.4.1">7.25.4.1 The mtx_destroy function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;threads.h&gt;</a>
          void mtx_destroy(mtx_t *mtx);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The mtx_destroy function releases any resources used by the mutex pointed to by
  mtx. No threads can be blocked waiting for the mutex pointed to by mtx.
 <!--page 396 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The mtx_destroy function returns no value.
 
 <h5><a name="7.25.4.2" href="#7.25.4.2">7.25.4.2 The mtx_init function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.25">&lt;threads.h&gt;</a>
         int mtx_init(mtx_t *mtx, int type);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The mtx_init function creates a mutex object with properties indicated by type,
  which must have one of the six values:
@@ -19183,24 +19183,24 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 3 -->
  If the mtx_init function succeeds, it sets the mutex pointed to by mtx to a value that
  uniquely identifies the newly created mutex.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The mtx_init function returns thrd_success on success, or thrd_error if the
  request could not be honored.
 
 <h5><a name="7.25.4.3" href="#7.25.4.3">7.25.4.3 The mtx_lock function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.25">&lt;threads.h&gt;</a>
         int mtx_lock(mtx_t *mtx);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The mtx_lock function blocks until it locks the mutex pointed to by mtx. If the mutex
  is non-recursive, it shall not be locked by the calling thread. Prior calls to mtx_unlock
  on the same mutex shall synchronize with this operation.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The mtx_lock function returns thrd_success on success, or thrd_busy if the
  resource requested is already in use, or thrd_error if the request could not be
@@ -19208,19 +19208,19 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 397 -->
 
 <h5><a name="7.25.4.4" href="#7.25.4.4">7.25.4.4 The mtx_timedlock function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;threads.h&gt;</a>
          int mtx_timedlock(mtx_t *mtx, const xtime *xt);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The mtx_timedlock function endeavors to block until it locks the mutex pointed to by
  mtx or until the time specified by the xtime object xt has passed. The specified mutex
  shall support timeout. If the operation succeeds, prior calls to mtx_unlock on the same
  mutex shall synchronize with this operation.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The mtx_timedlock function returns thrd_success on success, or thrd_busy
  if the resource requested is already in use, or thrd_timeout if the time specified was
@@ -19228,37 +19228,37 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  not be honored.
 
 <h5><a name="7.25.4.5" href="#7.25.4.5">7.25.4.5 The mtx_trylock function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;threads.h&gt;</a>
          int mtx_trylock(mtx_t *mtx);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The mtx_trylock function endeavors to lock the mutex pointed to by mtx. The
  specified mutex shall support either test and return or timeout. If the mutex is already
  locked, the function returns without blocking. If the operation succeeds, prior calls to
  mtx_unlock on the same mutex shall synchronize with this operation.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The mtx_trylock function returns thrd_success on success, or thrd_busy if
  the resource requested is already in use, or thrd_error if the request could not be
  honored.
 
 <h5><a name="7.25.4.6" href="#7.25.4.6">7.25.4.6 The mtx_unlock function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;threads.h&gt;</a>
          int mtx_unlock(mtx_t *mtx);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The mtx_unlock function unlocks the mutex pointed to by mtx. The mutex pointed to
  by mtx shall be locked by the calling thread.
 <!--page 398 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The mtx_unlock function returns thrd_success on success or thrd_error if
  the request could not be honored.
@@ -19266,14 +19266,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.25.5" href="#7.25.5">7.25.5 Thread functions</a></h4>
 
 <h5><a name="7.25.5.1" href="#7.25.5.1">7.25.5.1 The thrd_create function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.25">&lt;threads.h&gt;</a>
         int thrd_create(thrd_t *thr, thrd_start_t func,
              void *arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The thrd_create function creates a new thread executing func(arg). If the
  thrd_create function succeeds, it sets the object pointed to by thr to the identifier of
@@ -19281,83 +19281,83 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  the original thread has exited and either been detached or joined to another thread.) The
  completion of the thrd_create function synchronizes with the beginning of the
  execution of the new thread.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The thrd_create function returns thrd_success on success, or thrd_nomem if
  no memory could be allocated for the thread requested, or thrd_error if the request
  could not be honored.
 
 <h5><a name="7.25.5.2" href="#7.25.5.2">7.25.5.2 The thrd_current function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.25">&lt;threads.h&gt;</a>
         thrd_t thrd_current(void);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The thrd_current function identifies the thread that called it.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The thrd_current function returns the identifier of the thread that called it.
 
 <h5><a name="7.25.5.3" href="#7.25.5.3">7.25.5.3 The thrd_detach function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <!--page 399 -->
 <pre>
         #include <a href="#7.25">&lt;threads.h&gt;</a>
         int thrd_detach(thrd_t thr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The thrd_detach function tells the operating system to dispose of any resources
  allocated to the thread identified by thr when that thread terminates. The thread
  identified by thr shall not have been previously detached or joined with another thread.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The thrd_detach function returns thrd_success on success or thrd_error if
  the request could not be honored.
 
 <h5><a name="7.25.5.4" href="#7.25.5.4">7.25.5.4 The thrd_equal function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;threads.h&gt;</a>
          int thrd_equal(thrd_t thr0, thrd_t thr1);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The thrd_equal function will determine whether the thread identified by thr0 refers
  to the thread identified by thr1.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The thrd_equal function returns zero if the thread thr0 and the thread thr1 refer to
  different threads. Otherwise the thrd_equal function returns a nonzero value.
 
 <h5><a name="7.25.5.5" href="#7.25.5.5">7.25.5.5 The thrd_exit function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;threads.h&gt;</a>
          void thrd_exit(int res);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The thrd_exit function terminates execution of the calling thread and sets its result
  code to res.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The thrd_exit function returns no value.
 
 <h5><a name="7.25.5.6" href="#7.25.5.6">7.25.5.6 The thrd_join function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;threads.h&gt;</a>
          int thrd_join(thrd_t thr, int *res);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The thrd_join function joins the thread identified by thr with the current thread by
  blocking until the other thread has terminated. If the parameter res is not a null pointer,
@@ -19365,56 +19365,56 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  it stores the thread's result code in the integer pointed to by res. The termination of the
  other thread synchronizes with the completion of the thrd_join function. The thread
  identified by thr shall not have been previously detached or joined with another thread.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The thrd_join function returns thrd_success on success or thrd_error if the
  request could not be honored.
 
 <h5><a name="7.25.5.7" href="#7.25.5.7">7.25.5.7 The thrd_sleep function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.25">&lt;threads.h&gt;</a>
         void thrd_sleep(const xtime *xt);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The thrd_sleep function suspends execution of the calling thread until after the time
  specified by the xtime object pointed to by xt.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The thrd_sleep function returns no value.
 
 <h5><a name="7.25.5.8" href="#7.25.5.8">7.25.5.8 The thrd_yield function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.25">&lt;threads.h&gt;</a>
         void thrd_yield(void);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The thrd_yield function endeavors to permit other threads to run, even if the current
  thread would ordinarily continue to run.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The thrd_yield function returns no value.
 
 <h4><a name="7.25.6" href="#7.25.6">7.25.6 Thread-specific storage functions</a></h4>
 
 <h5><a name="7.25.6.1" href="#7.25.6.1">7.25.6.1 The tss_create function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.25">&lt;threads.h&gt;</a>
         int tss_create(tss_t *key, tss_dtor_t dtor);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The tss_create function creates a thread-specific storage pointer with destructor
  dtor, which may be null.
 <!--page 401 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If the tss_create function is successful, it sets the thread-specific storage pointed to
  by key to a value that uniquely identifies the newly created pointer and returns
@@ -19422,49 +19422,49 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  pointed to by key is set to an undefined value.
 
 <h5><a name="7.25.6.2" href="#7.25.6.2">7.25.6.2 The tss_delete function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;threads.h&gt;</a>
          void tss_delete(tss_t key);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The tss_delete function releases any resources used by the thread-specific storage
  identified by key.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The tss_delete function returns no value.
 
 <h5><a name="7.25.6.3" href="#7.25.6.3">7.25.6.3 The tss_get function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;threads.h&gt;</a>
          void *tss_get(tss_t key);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The tss_get function returns the value for the current thread held in the thread-specific
  storage identified by key.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The tss_get function returns the value for the current thread if successful, or zero if
  unsuccessful.
 
 <h5><a name="7.25.6.4" href="#7.25.6.4">7.25.6.4 The tss_set function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;threads.h&gt;</a>
          int tss_set(tss_t key, void *val);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The tss_set function sets the value for the current thread held in the thread-specific
  storage identified by key to val.
 <!--page 402 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The tss_set function returns thrd_success on success or thrd_error if the
  request could not be honored.
@@ -19472,17 +19472,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.25.7" href="#7.25.7">7.25.7 Time functions</a></h4>
 
 <h5><a name="7.25.7.1" href="#7.25.7.1">7.25.7.1 The xtime_get function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.25">&lt;threads.h&gt;</a>
          int xtime_get(xtime *xt, int base);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The xtime_get function sets the xtime object pointed to by xt to hold the current
  time based on the time base base.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If the xtime_get function is successful it returns the nonzero value base, which must
  be TIME_UTC; otherwise, it returns zero.<sup><a href="#note306"><b>306)</b></a></sup>
@@ -19492,7 +19492,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 403 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note306" href="#note306">306)</a> Although an xtime object describes times with nanosecond resolution, the actual resolution in an
  xtime object is system dependent.
 </small>
@@ -19551,23 +19551,23 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  The value of tm_isdst is positive if Daylight Saving Time is in effect, zero if Daylight
  Saving Time is not in effect, and negative if the information is not available.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note307" href="#note307">307)</a> The range [0, 60] for tm_sec allows for a positive leap second.
 </small>
 
 <h4><a name="7.26.2" href="#7.26.2">7.26.2 Time manipulation functions</a></h4>
 
 <h5><a name="7.26.2.1" href="#7.26.2.1">7.26.2.1 The clock function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.26">&lt;time.h&gt;</a>
          clock_t clock(void);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The clock function determines the processor time used.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The clock function returns the implementation's best approximation to the processor
  time used by the program since the beginning of an implementation-defined era related
@@ -19576,23 +19576,23 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  the processor time used is not available or its value cannot be represented, the function
  returns the value (clock_t)(-1).<sup><a href="#note308"><b>308)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note308" href="#note308">308)</a> In order to measure the time spent in a program, the clock function should be called at the start of
  the program and its return value subtracted from the value returned by subsequent calls.
 </small>
 
 <h5><a name="7.26.2.2" href="#7.26.2.2">7.26.2.2 The difftime function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.26">&lt;time.h&gt;</a>
          double difftime(time_t time1, time_t time0);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The difftime function computes the difference between two calendar times: time1 -
  time0.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The difftime function returns the difference expressed in seconds as a double.
  
@@ -19602,13 +19602,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 405 -->
 
 <h5><a name="7.26.2.3" href="#7.26.2.3">7.26.2.3 The mktime function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.26">&lt;time.h&gt;</a>
          time_t mktime(struct tm *timeptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The mktime function converts the broken-down time, expressed as local time, in the
  structure pointed to by timeptr into a calendar time value with the same encoding as
@@ -19619,7 +19619,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  set appropriately, and the other components are set to represent the specified calendar
  time, but with their values forced to the ranges indicated above; the final value of
  tm_mday is not set until tm_mon and tm_year are determined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The mktime function returns the specified calendar time encoded as a value of type
  time_t. If the calendar time cannot be represented, the function returns the value
@@ -19655,24 +19655,24 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note309" href="#note309">309)</a> Thus, a positive or zero value for tm_isdst causes the mktime function to presume initially that
  Daylight Saving Time, respectively, is or is not in effect for the specified time. A negative value
  causes it to attempt to determine whether Daylight Saving Time is in effect for the specified time.
 </small>
 
 <h5><a name="7.26.2.4" href="#7.26.2.4">7.26.2.4 The time function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.26">&lt;time.h&gt;</a>
         time_t time(time_t *timer);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The time function determines the current calendar time. The encoding of the value is
  unspecified.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The time function returns the implementation's best approximation to the current
  calendar time. The value (time_t)(-1) is returned if the calendar time is not
@@ -19689,13 +19689,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  implementation shall behave as if no other library functions call these functions.
 
 <h5><a name="7.26.3.1" href="#7.26.3.1">7.26.3.1 The asctime function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.26">&lt;time.h&gt;</a>
         char *asctime(const struct tm *timeptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The asctime function converts the broken-down time in the structure pointed to by
  timeptr into a string in the form
@@ -19729,22 +19729,22 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  ranges,<sup><a href="#note310"><b>310)</b></a></sup> the behavior of the asctime function is undefined. Likewise, if the
  calculated year exceeds four digits or is less than the year 1000, the behavior is
  undefined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The asctime function returns a pointer to the string.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note310" href="#note310">310)</a> See <a href="#7.26.1">7.26.1</a>.
 </small>
 
 <h5><a name="7.26.3.2" href="#7.26.3.2">7.26.3.2 The ctime function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.26">&lt;time.h&gt;</a>
          char *ctime(const time_t *timer);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ctime function converts the calendar time pointed to by timer to local time in the
  form of a string. It is equivalent to
@@ -19755,46 +19755,46 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
  
 <!--page 408 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The ctime function returns the pointer returned by the asctime function with that
  broken-down time as argument.
 <p><b> Forward references</b>: the localtime function (<a href="#7.26.3.4">7.26.3.4</a>).
 
 <h5><a name="7.26.3.3" href="#7.26.3.3">7.26.3.3 The gmtime function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.26">&lt;time.h&gt;</a>
         struct tm *gmtime(const time_t *timer);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The gmtime function converts the calendar time pointed to by timer into a broken-
  down time, expressed as UTC.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The gmtime function returns a pointer to the broken-down time, or a null pointer if the
  specified time cannot be converted to UTC.
 
 <h5><a name="7.26.3.4" href="#7.26.3.4">7.26.3.4 The localtime function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.26">&lt;time.h&gt;</a>
         struct tm *localtime(const time_t *timer);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The localtime function converts the calendar time pointed to by timer into a
  broken-down time, expressed as local time.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The localtime function returns a pointer to the broken-down time, or a null pointer if
  the specified time cannot be converted to local time.
 
 <h5><a name="7.26.3.5" href="#7.26.3.5">7.26.3.5 The strftime function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <!--page 409 -->
 <pre>
@@ -19804,7 +19804,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
              const char * restrict format,
              const struct tm * restrict timeptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strftime function places characters into the array pointed to by s as controlled by
  the string pointed to by format. The format shall be a multibyte character sequence,
@@ -19992,7 +19992,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  %x    equivalent to ''%m/%d/%y''.
  %X    equivalent to %T.
  %Z    implementation-defined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 8 -->
  If the total number of resulting characters including the terminating null character is not
  more than maxsize, the strftime function returns the number of characters placed
@@ -20029,7 +20029,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  calls these functions with a null pointer for ps.
 
 <h5><a name="7.27.1.1" href="#7.27.1.1">7.27.1.1 The mbrtoc16 function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.27">&lt;uchar.h&gt;</a>
@@ -20037,7 +20037,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               const char * restrict s, size_t n,
               mbstate_t * restrict ps);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If s is a null pointer, the mbrtoc16 function is equivalent to the call:
 <pre>
@@ -20055,7 +20055,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  store successive wide characters without consuming any additional input until all the
  characters have been stored. If the corresponding wide character is the null wide
  character, the resulting state described is the initial conversion state.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The mbrtoc16 function returns the first of the following that applies (given the current
  conversion state):
@@ -20084,20 +20084,20 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               and the conversion state is unspecified.
 </pre>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note311" href="#note311">311)</a> When n has at least the value of the MB_CUR_MAX macro, this case can only occur if s points at a
  sequence of redundant shift sequences (for implementations with state-dependent encodings).
 </small>
 
 <h5><a name="7.27.1.2" href="#7.27.1.2">7.27.1.2 The c16rtomb function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.27">&lt;uchar.h&gt;</a>
          size_t c16rtomb(char * restrict s, char16_t c16,
               mbstate_t * restrict ps);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If s is a null pointer, the c16rtomb function is equivalent to the call
 <pre>
@@ -20114,7 +20114,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  array whose first element is pointed to by s. At most MB_CUR_MAX bytes are stored. If
  c16 is a null wide character, a null byte is stored, preceded by any shift sequence needed
  to restore the initial shift state; the resulting state described is the initial conversion state.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The c16rtomb function returns the number of bytes stored in the array object (including
  any shift sequences). When c16 is not a valid wide character, an encoding error occurs:
@@ -20122,7 +20122,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  (size_t)(-1); the conversion state is unspecified.
 
 <h5><a name="7.27.1.3" href="#7.27.1.3">7.27.1.3 The mbrtoc32 function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.27">&lt;uchar.h&gt;</a>
@@ -20130,7 +20130,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               const char * restrict s, size_t n,
               mbstate_t * restrict ps);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If s is a null pointer, the mbrtoc32 function is equivalent to the call:
 <pre>
@@ -20147,7 +20147,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  store successive wide characters without consuming any additional input until all the
  characters have been stored. If the corresponding wide character is the null wide
  character, the resulting state described is the initial conversion state.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The mbrtoc32 function returns the first of the following that applies (given the current
  conversion state):
@@ -20177,20 +20177,20 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               and the conversion state is unspecified.
 </pre>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note312" href="#note312">312)</a> When n has at least the value of the MB_CUR_MAX macro, this case can only occur if s points at a
  sequence of redundant shift sequences (for implementations with state-dependent encodings).
 </small>
 
 <h5><a name="7.27.1.4" href="#7.27.1.4">7.27.1.4 The c32rtomb function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.27">&lt;uchar.h&gt;</a>
          size_t c32rtomb(char * restrict s, char32_t c32,
               mbstate_t * restrict ps);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If s is a null pointer, the c32rtomb function is equivalent to the call
 <pre>
@@ -20204,7 +20204,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  array whose first element is pointed to by s. At most MB_CUR_MAX bytes are stored. If
  c32 is a null wide character, a null byte is stored, preceded by any shift sequence needed
  to restore the initial shift state; the resulting state described is the initial conversion state.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The c32rtomb function returns the number of bytes stored in the array object (including
  any shift sequences). When c32 is not a valid wide character, an encoding error occurs:
@@ -20271,7 +20271,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  subclause causes copying to take place between objects that overlap, the behavior is
  undefined.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note313" href="#note313">313)</a> See ''future library directions'' (<a href="#7.30.12">7.30.12</a>).
 </small>
 <p><small><a name="note314" href="#note314">314)</a> wchar_t and wint_t can be the same integer type.
@@ -20284,12 +20284,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  The formatted wide character input/output functions shall behave as if there is a sequence
  point after the actions associated with each specifier.<sup><a href="#note316"><b>316)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note316" href="#note316">316)</a> The fwprintf functions perform writes to memory for the %n specifier.
 </small>
 
 <h5><a name="7.28.2.1" href="#7.28.2.1">7.28.2.1 The fwprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
@@ -20297,7 +20297,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          int fwprintf(FILE * restrict stream,
               const wchar_t * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fwprintf function writes output to the stream pointed to by stream, under
  control of the wide string pointed to by format that specifies how subsequent arguments
@@ -20585,7 +20585,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 11 -->
  For a and A conversions, if FLT_RADIX is a power of 2, the value is correctly rounded
  to a hexadecimal floating number with the given precision.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 12 -->
  For a and A conversions, if FLT_RADIX is not a power of 2 and the result is not exactly
  representable in the given precision, the result should be one of the two adjacent numbers
@@ -20600,13 +20600,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  adjacent decimal strings L &lt; U, both having DECIMAL_DIG significant digits; the value
  of the resultant decimal string D should satisfy L &lt;= D &lt;= U, with the extra stipulation that
  the error should have a correct sign for the current rounding direction.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 14 -->
  The fwprintf function returns the number of wide characters transmitted, or a negative
  value if an output or encoding error occurred.
  
 <!--page 425 -->
-<h6>Environmental limits</h6>
+<p><b>Environmental limits</b>
 <p><!--para 15 -->
  The number of wide characters that can be produced by any single conversion shall be at
  least 4095.
@@ -20628,7 +20628,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>:          the btowc function (<a href="#7.28.6.1.1">7.28.6.1.1</a>), the mbrtowc function
  (<a href="#7.28.6.3.2">7.28.6.3.2</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note317" href="#note317">317)</a> Note that 0 is taken as a flag, not as the beginning of a field width.
 </small>
 <p><small><a name="note318" href="#note318">318)</a> The results of all floating conversions of a negative zero, and of negative values that round to zero,
@@ -20653,7 +20653,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="7.28.2.2" href="#7.28.2.2">7.28.2.2 The fwscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
@@ -20661,7 +20661,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          int fwscanf(FILE * restrict stream,
               const wchar_t * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fwscanf function reads input from the stream pointed to by stream, under
  control of the wide string pointed to by format that specifies the admissible input
@@ -20895,7 +20895,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  Trailing white space (including new-line wide characters) is left unread unless matched
  by a directive. The success of literal matches and suppressed assignments is not directly
  determinable other than via the %n directive.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 16 -->
  The fwscanf function returns the value of the macro EOF if an input failure occurs
  before the first conversion (if any) has completed. Otherwise, the function returns the
@@ -20939,7 +20939,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  wcstol, wcstoll, wcstoul, and wcstoull functions (<a href="#7.28.4.1.2">7.28.4.1.2</a>), the wcrtomb
  function (<a href="#7.28.6.3.3">7.28.6.3.3</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note324" href="#note324">324)</a> These white-space wide characters are not counted against a specified field width.
 </small>
 <p><small><a name="note325" href="#note325">325)</a> fwscanf pushes back at most one input wide character onto the input stream. Therefore, some
@@ -20949,7 +20949,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="7.28.2.3" href="#7.28.2.3">7.28.2.3 The swprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
@@ -20957,33 +20957,33 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               size_t n,
               const wchar_t * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The swprintf function is equivalent to fwprintf, except that the argument s
  specifies an array of wide characters into which the generated output is to be written,
  rather than written to a stream. No more than n wide characters are written, including a
  terminating null wide character, which is always added (unless n is zero).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The swprintf function returns the number of wide characters written in the array, not
  counting the terminating null wide character, or a negative value if an encoding error
  occurred or if n or more wide characters were requested to be written.
 
 <h5><a name="7.28.2.4" href="#7.28.2.4">7.28.2.4 The swscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
          int swscanf(const wchar_t * restrict s,
               const wchar_t * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The swscanf function is equivalent to fwscanf, except that the argument s specifies a
  wide string from which the input is to be obtained, rather than from a stream. Reaching
  the end of the wide string is equivalent to encountering end-of-file for the fwscanf
  function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The swscanf function returns the value of the macro EOF if an input failure occurs
  before the first conversion (if any) has completed. Otherwise, the swscanf function
@@ -20992,7 +20992,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 432 -->
 
 <h5><a name="7.28.2.5" href="#7.28.2.5">7.28.2.5 The vfwprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.16">&lt;stdarg.h&gt;</a>
@@ -21002,13 +21002,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
              const wchar_t * restrict format,
              va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vfwprintf function is equivalent to fwprintf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vfwprintf function does not invoke the
  va_end macro.<sup><a href="#note327"><b>327)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vfwprintf function returns the number of wide characters transmitted, or a
  negative value if an output or encoding error occurred.
@@ -21036,13 +21036,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 433 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note327" href="#note327">327)</a> As the functions vfwprintf, vswprintf, vfwscanf, vwprintf, vwscanf, and vswscanf
  invoke the va_arg macro, the value of arg after the return is indeterminate.
 </small>
 
 <h5><a name="7.28.2.6" href="#7.28.2.6">7.28.2.6 The vfwscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.16">&lt;stdarg.h&gt;</a>
@@ -21052,13 +21052,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               const wchar_t * restrict format,
               va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vfwscanf function is equivalent to fwscanf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vfwscanf function does not invoke the
  va_end macro.<sup><a href="#note327"><b>327)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vfwscanf function returns the value of the macro EOF if an input failure occurs
  before the first conversion (if any) has completed. Otherwise, the vfwscanf function
@@ -21066,7 +21066,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  zero, in the event of an early matching failure.
 
 <h5><a name="7.28.2.7" href="#7.28.2.7">7.28.2.7 The vswprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.16">&lt;stdarg.h&gt;</a>
@@ -21076,13 +21076,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               const wchar_t * restrict format,
               va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vswprintf function is equivalent to swprintf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vswprintf function does not invoke the
  va_end macro.<sup><a href="#note327"><b>327)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vswprintf function returns the number of wide characters written in the array, not
  counting the terminating null wide character, or a negative value if an encoding error
@@ -21090,7 +21090,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 434 -->
 
 <h5><a name="7.28.2.8" href="#7.28.2.8">7.28.2.8 The vswscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.16">&lt;stdarg.h&gt;</a>
@@ -21099,13 +21099,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
              const wchar_t * restrict format,
              va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vswscanf function is equivalent to swscanf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vswscanf function does not invoke the
  va_end macro.<sup><a href="#note327"><b>327)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vswscanf function returns the value of the macro EOF if an input failure occurs
  before the first conversion (if any) has completed. Otherwise, the vswscanf function
@@ -21113,7 +21113,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  zero, in the event of an early matching failure.
 
 <h5><a name="7.28.2.9" href="#7.28.2.9">7.28.2.9 The vwprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.16">&lt;stdarg.h&gt;</a>
@@ -21121,20 +21121,20 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
         int vwprintf(const wchar_t * restrict format,
              va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vwprintf function is equivalent to wprintf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vwprintf function does not invoke the
  va_end macro.<sup><a href="#note327"><b>327)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vwprintf function returns the number of wide characters transmitted, or a negative
  value if an output or encoding error occurred.
 <!--page 435 -->
 
 <h5><a name="7.28.2.10" href="#7.28.2.10">7.28.2.10 The vwscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.16">&lt;stdarg.h&gt;</a>
@@ -21142,13 +21142,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          int vwscanf(const wchar_t * restrict format,
               va_list arg);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The vwscanf function is equivalent to wscanf, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vwscanf function does not invoke the
  va_end macro.<sup><a href="#note327"><b>327)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The vwscanf function returns the value of the macro EOF if an input failure occurs
  before the first conversion (if any) has completed. Otherwise, the vwscanf function
@@ -21156,34 +21156,34 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  zero, in the event of an early matching failure.
 
 <h5><a name="7.28.2.11" href="#7.28.2.11">7.28.2.11 The wprintf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
          int wprintf(const wchar_t * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wprintf function is equivalent to fwprintf with the argument stdout
  interposed before the arguments to wprintf.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wprintf function returns the number of wide characters transmitted, or a negative
  value if an output or encoding error occurred.
 
 <h5><a name="7.28.2.12" href="#7.28.2.12">7.28.2.12 The wscanf function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
          int wscanf(const wchar_t * restrict format, ...);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wscanf function is equivalent to fwscanf with the argument stdin interposed
  before the arguments to wscanf.
 <!--page 436 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wscanf function returns the value of the macro EOF if an input failure occurs
  before the first conversion (if any) has completed. Otherwise, the wscanf function
@@ -21193,20 +21193,20 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h4><a name="7.28.3" href="#7.28.3">7.28.3 Wide character input/output functions</a></h4>
 
 <h5><a name="7.28.3.1" href="#7.28.3.1">7.28.3.1 The fgetwc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
          wint_t fgetwc(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If the end-of-file indicator for the input stream pointed to by stream is not set and a
  next wide character is present, the fgetwc function obtains that wide character as a
  wchar_t converted to a wint_t and advances the associated file position indicator for
  the stream (if defined).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If the end-of-file indicator for the stream is set, or if the stream is at end-of-file, the end-
  of-file indicator for the stream is set and the fgetwc function returns WEOF. Otherwise,
@@ -21215,13 +21215,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  function returns WEOF. If an encoding error occurs (including too few bytes), the value of
  the macro EILSEQ is stored in errno and the fgetwc function returns WEOF.<sup><a href="#note328"><b>328)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note328" href="#note328">328)</a> An end-of-file and a read error can be distinguished by use of the feof and ferror functions.
  Also, errno will be set to EILSEQ by input/output functions only if an encoding error occurs.
 </small>
 
 <h5><a name="7.28.3.2" href="#7.28.3.2">7.28.3.2 The fgetws function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
@@ -21229,7 +21229,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          wchar_t *fgetws(wchar_t * restrict s,
               int n, FILE * restrict stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fgetws function reads at most one less than the number of wide characters
  specified by n from the stream pointed to by stream into the array pointed to by s. No
@@ -21239,7 +21239,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  additional wide characters are read after a new-line wide character (which is retained) or
  after end-of-file. A null wide character is written immediately after the last wide
  character read into the array.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fgetws function returns s if successful. If end-of-file is encountered and no
  characters have been read into the array, the contents of the array remain unchanged and a
@@ -21247,28 +21247,28 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  contents are indeterminate and a null pointer is returned.
 
 <h5><a name="7.28.3.3" href="#7.28.3.3">7.28.3.3 The fputwc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
          wint_t fputwc(wchar_t c, FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fputwc function writes the wide character specified by c to the output stream
  pointed to by stream, at the position indicated by the associated file position indicator
  for the stream (if defined), and advances the indicator appropriately. If the file cannot
  support positioning requests, or if the stream was opened with append mode, the
  character is appended to the output stream.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fputwc function returns the wide character written. If a write error occurs, the
  error indicator for the stream is set and fputwc returns WEOF. If an encoding error
  occurs, the value of the macro EILSEQ is stored in errno and fputwc returns WEOF.
 
 <h5><a name="7.28.3.4" href="#7.28.3.4">7.28.3.4 The fputws function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
@@ -21276,60 +21276,60 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          int fputws(const wchar_t * restrict s,
               FILE * restrict stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fputws function writes the wide string pointed to by s to the stream pointed to by
  stream. The terminating null wide character is not written.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fputws function returns EOF if a write or encoding error occurs; otherwise, it
  returns a nonnegative value.
 <!--page 438 -->
 
 <h5><a name="7.28.3.5" href="#7.28.3.5">7.28.3.5 The fwide function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
          int fwide(FILE *stream, int mode);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The fwide function determines the orientation of the stream pointed to by stream. If
  mode is greater than zero, the function first attempts to make the stream wide oriented. If
  mode is less than zero, the function first attempts to make the stream byte oriented.<sup><a href="#note329"><b>329)</b></a></sup>
  Otherwise, mode is zero and the function does not alter the orientation of the stream.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The fwide function returns a value greater than zero if, after the call, the stream has
  wide orientation, a value less than zero if the stream has byte orientation, or zero if the
  stream has no orientation.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note329" href="#note329">329)</a> If the orientation of the stream has already been determined, fwide does not change it.
 </small>
 
 <h5><a name="7.28.3.6" href="#7.28.3.6">7.28.3.6 The getwc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
          wint_t getwc(FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The getwc function is equivalent to fgetwc, except that if it is implemented as a
  macro, it may evaluate stream more than once, so the argument should never be an
  expression with side effects.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The getwc function returns the next wide character from the input stream pointed to by
  stream, or WEOF.
 
 <h5><a name="7.28.3.7" href="#7.28.3.7">7.28.3.7 The getwchar function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
@@ -21340,54 +21340,54 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
  
 <!--page 439 -->
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The getwchar function is equivalent to getwc with the argument stdin.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The getwchar function returns the next wide character from the input stream pointed to
  by stdin, or WEOF.
 
 <h5><a name="7.28.3.8" href="#7.28.3.8">7.28.3.8 The putwc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
          wint_t putwc(wchar_t c, FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The putwc function is equivalent to fputwc, except that if it is implemented as a
  macro, it may evaluate stream more than once, so that argument should never be an
  expression with side effects.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The putwc function returns the wide character written, or WEOF.
 
 <h5><a name="7.28.3.9" href="#7.28.3.9">7.28.3.9 The putwchar function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
          wint_t putwchar(wchar_t c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The putwchar function is equivalent to putwc with the second argument stdout.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The putwchar function returns the character written, or WEOF.
 
 <h5><a name="7.28.3.10" href="#7.28.3.10">7.28.3.10 The ungetwc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.21">&lt;stdio.h&gt;</a>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
          wint_t ungetwc(wint_t c, FILE *stream);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The ungetwc function pushes the wide character specified by c back onto the input
  stream pointed to by stream. Pushed-back wide characters will be returned by
@@ -21412,7 +21412,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  back. For a text or binary stream, the value of its file position indicator after a successful
  call to the ungetwc function is unspecified until all pushed-back wide characters are
  read or discarded.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  The ungetwc function returns the wide character pushed back, or WEOF if the operation
  fails.
@@ -21436,7 +21436,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="7.28.4.1" href="#7.28.4.1">7.28.4.1 Wide string numeric conversion functions</a></h5>
 
 <h5><a name="7.28.4.1.1" href="#7.28.4.1.1">7.28.4.1.1 The wcstod, wcstof, and wcstold functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
@@ -21447,7 +21447,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          long double wcstold(const wchar_t * restrict nptr,
               wchar_t ** restrict endptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcstod, wcstof, and wcstold functions convert the initial portion of the wide
  string pointed to by nptr to double, float, and long double representation,
@@ -21510,7 +21510,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If the subject sequence is empty or does not have the expected form, no conversion is
  performed; the value of nptr is stored in the object pointed to by endptr, provided
  that endptr is not a null pointer.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 8 -->
  If the subject sequence has the hexadecimal form, FLT_RADIX is not a power of 2, and
  the result is not exactly representable, the result should be one of the two numbers in the
@@ -21531,7 +21531,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  correctly rounding L and U according to the current rounding direction, with the extra
  stipulation that the error with respect to D should have a correct sign for the current
  rounding direction.<sup><a href="#note332"><b>332)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 10 -->
  The functions return the converted value, if any. If no conversion could be performed,
  zero is returned. If the correct value overflows and default rounding is in effect (<a href="#7.12.1">7.12.1</a>),
@@ -21546,7 +21546,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 444 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note330" href="#note330">330)</a> It is unspecified whether a minus-signed sequence is converted to a negative number directly or by
  negating the value resulting from converting the corresponding unsigned sequence (see <a href="#F.5">F.5</a>); the two
  methods may yield different results if rounding is toward positive or negative infinity. In either case,
@@ -21560,7 +21560,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="7.28.4.1.2" href="#7.28.4.1.2">7.28.4.1.2 The wcstol, wcstoll, wcstoul, and wcstoull functions</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.28">&lt;wchar.h&gt;</a>
@@ -21581,7 +21581,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
              wchar_t ** restrict endptr,
              int base);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcstol, wcstoll, wcstoul, and wcstoull functions convert the initial
  portion of the wide string pointed to by nptr to long int, long long int,
@@ -21626,7 +21626,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If the subject sequence is empty or does not have the expected form, no conversion is
  performed; the value of nptr is stored in the object pointed to by endptr, provided
  that endptr is not a null pointer.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 8 -->
  The wcstol, wcstoll, wcstoul, and wcstoull functions return the converted
  value, if any. If no conversion could be performed, zero is returned. If the correct value
@@ -21637,24 +21637,24 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="7.28.4.2" href="#7.28.4.2">7.28.4.2 Wide string copying functions</a></h5>
 
 <h5><a name="7.28.4.2.1" href="#7.28.4.2.1">7.28.4.2.1 The wcscpy function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
          wchar_t *wcscpy(wchar_t * restrict s1,
               const wchar_t * restrict s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcscpy function copies the wide string pointed to by s2 (including the terminating
  null wide character) into the array pointed to by s1.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcscpy function returns the value of s1.
 <!--page 446 -->
 
 <h5><a name="7.28.4.2.2" href="#7.28.4.2.2">7.28.4.2.2 The wcsncpy function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.28">&lt;wchar.h&gt;</a>
@@ -21662,7 +21662,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                const wchar_t * restrict s2,
                size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcsncpy function copies not more than n wide characters (those that follow a null
  wide character are not copied) from the array pointed to by s2 to the array pointed to by
@@ -21671,17 +21671,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If the array pointed to by s2 is a wide string that is shorter than n wide characters, null
  wide characters are appended to the copy in the array pointed to by s1, until n wide
  characters in all have been written.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The wcsncpy function returns the value of s1.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note333" href="#note333">333)</a> Thus, if there is no null wide character in the first n wide characters of the array pointed to by s2, the
  result will not be null-terminated.
 </small>
 
 <h5><a name="7.28.4.2.3" href="#7.28.4.2.3">7.28.4.2.3 The wmemcpy function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.28">&lt;wchar.h&gt;</a>
@@ -21689,11 +21689,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                const wchar_t * restrict s2,
                size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wmemcpy function copies n wide characters from the object pointed to by s2 to the
  object pointed to by s1.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wmemcpy function returns the value of s1.
  
@@ -21703,45 +21703,45 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 447 -->
 
 <h5><a name="7.28.4.2.4" href="#7.28.4.2.4">7.28.4.2.4 The wmemmove function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
          wchar_t *wmemmove(wchar_t *s1, const wchar_t *s2,
               size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wmemmove function copies n wide characters from the object pointed to by s2 to
  the object pointed to by s1. Copying takes place as if the n wide characters from the
  object pointed to by s2 are first copied into a temporary array of n wide characters that
  does not overlap the objects pointed to by s1 or s2, and then the n wide characters from
  the temporary array are copied into the object pointed to by s1.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wmemmove function returns the value of s1.
 
 <h5><a name="7.28.4.3" href="#7.28.4.3">7.28.4.3 Wide string concatenation functions</a></h5>
 
 <h5><a name="7.28.4.3.1" href="#7.28.4.3.1">7.28.4.3.1 The wcscat function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
          wchar_t *wcscat(wchar_t * restrict s1,
               const wchar_t * restrict s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcscat function appends a copy of the wide string pointed to by s2 (including the
  terminating null wide character) to the end of the wide string pointed to by s1. The initial
  wide character of s2 overwrites the null wide character at the end of s1.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcscat function returns the value of s1.
 
 <h5><a name="7.28.4.3.2" href="#7.28.4.3.2">7.28.4.3.2 The wcsncat function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
@@ -21749,7 +21749,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               const wchar_t * restrict s2,
               size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcsncat function appends not more than n wide characters (a null wide character
  and those that follow it are not appended) from the array pointed to by s2 to the end of
@@ -21757,11 +21757,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  the wide string pointed to by s1. The initial wide character of s2 overwrites the null
  wide character at the end of s1. A terminating null wide character is always appended to
  the result.<sup><a href="#note334"><b>334)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcsncat function returns the value of s1.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note334" href="#note334">334)</a> Thus, the maximum number of wide characters that can end up in the array pointed to by s1 is
  wcslen(s1)+n+1.
 </small>
@@ -21773,35 +21773,35 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  by wchar_t.
 
 <h5><a name="7.28.4.4.1" href="#7.28.4.4.1">7.28.4.4.1 The wcscmp function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
          int wcscmp(const wchar_t *s1, const wchar_t *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcscmp function compares the wide string pointed to by s1 to the wide string
  pointed to by s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcscmp function returns an integer greater than, equal to, or less than zero,
  accordingly as the wide string pointed to by s1 is greater than, equal to, or less than the
  wide string pointed to by s2.
 
 <h5><a name="7.28.4.4.2" href="#7.28.4.4.2">7.28.4.4.2 The wcscoll function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
          int wcscoll(const wchar_t *s1, const wchar_t *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcscoll function compares the wide string pointed to by s1 to the wide string
  pointed to by s2, both interpreted as appropriate to the LC_COLLATE category of the
  current locale.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcscoll function returns an integer greater than, equal to, or less than zero,
  accordingly as the wide string pointed to by s1 is greater than, equal to, or less than the
@@ -21812,26 +21812,26 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  locale.
 
 <h5><a name="7.28.4.4.3" href="#7.28.4.4.3">7.28.4.4.3 The wcsncmp function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
          int wcsncmp(const wchar_t *s1, const wchar_t *s2,
               size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcsncmp function compares not more than n wide characters (those that follow a
  null wide character are not compared) from the array pointed to by s1 to the array
  pointed to by s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcsncmp function returns an integer greater than, equal to, or less than zero,
  accordingly as the possibly null-terminated array pointed to by s1 is greater than, equal
  to, or less than the possibly null-terminated array pointed to by s2.
 
 <h5><a name="7.28.4.4.4" href="#7.28.4.4.4">7.28.4.4.4 The wcsxfrm function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
@@ -21839,7 +21839,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               const wchar_t * restrict s2,
               size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcsxfrm function transforms the wide string pointed to by s2 and places the
  resulting wide string into the array pointed to by s1. The transformation is such that if
@@ -21848,7 +21848,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  applied to the same two original wide strings. No more than n wide characters are placed
  into the resulting array pointed to by s1, including the terminating null wide character. If
  n is zero, s1 is permitted to be a null pointer.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcsxfrm function returns the length of the transformed wide string (not including
  the terminating null wide character). If the value returned is n or greater, the contents of
@@ -21863,18 +21863,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 
 <h5><a name="7.28.4.4.5" href="#7.28.4.4.5">7.28.4.4.5 The wmemcmp function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.28">&lt;wchar.h&gt;</a>
         int wmemcmp(const wchar_t *s1, const wchar_t *s2,
              size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wmemcmp function compares the first n wide characters of the object pointed to by
  s1 to the first n wide characters of the object pointed to by s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wmemcmp function returns an integer greater than, equal to, or less than zero,
  accordingly as the object pointed to by s1 is greater than, equal to, or less than the object
@@ -21883,107 +21883,107 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="7.28.4.5" href="#7.28.4.5">7.28.4.5 Wide string search functions</a></h5>
 
 <h5><a name="7.28.4.5.1" href="#7.28.4.5.1">7.28.4.5.1 The wcschr function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.28">&lt;wchar.h&gt;</a>
         wchar_t *wcschr(const wchar_t *s, wchar_t c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcschr function locates the first occurrence of c in the wide string pointed to by s.
  The terminating null wide character is considered to be part of the wide string.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcschr function returns a pointer to the located wide character, or a null pointer if
  the wide character does not occur in the wide string.
 
 <h5><a name="7.28.4.5.2" href="#7.28.4.5.2">7.28.4.5.2 The wcscspn function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.28">&lt;wchar.h&gt;</a>
         size_t wcscspn(const wchar_t *s1, const wchar_t *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcscspn function computes the length of the maximum initial segment of the wide
  string pointed to by s1 which consists entirely of wide characters not from the wide
  string pointed to by s2.
 <!--page 451 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcscspn function returns the length of the segment.
 
 <h5><a name="7.28.4.5.3" href="#7.28.4.5.3">7.28.4.5.3 The wcspbrk function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
          wchar_t *wcspbrk(const wchar_t *s1, const wchar_t *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcspbrk function locates the first occurrence in the wide string pointed to by s1 of
  any wide character from the wide string pointed to by s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcspbrk function returns a pointer to the wide character in s1, or a null pointer if
  no wide character from s2 occurs in s1.
 
 <h5><a name="7.28.4.5.4" href="#7.28.4.5.4">7.28.4.5.4 The wcsrchr function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
          wchar_t *wcsrchr(const wchar_t *s, wchar_t c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcsrchr function locates the last occurrence of c in the wide string pointed to by
  s. The terminating null wide character is considered to be part of the wide string.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcsrchr function returns a pointer to the wide character, or a null pointer if c does
  not occur in the wide string.
 
 <h5><a name="7.28.4.5.5" href="#7.28.4.5.5">7.28.4.5.5 The wcsspn function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
          size_t wcsspn(const wchar_t *s1, const wchar_t *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcsspn function computes the length of the maximum initial segment of the wide
  string pointed to by s1 which consists entirely of wide characters from the wide string
  pointed to by s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcsspn function returns the length of the segment.
 <!--page 452 -->
 
 <h5><a name="7.28.4.5.6" href="#7.28.4.5.6">7.28.4.5.6 The wcsstr function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.28">&lt;wchar.h&gt;</a>
         wchar_t *wcsstr(const wchar_t *s1, const wchar_t *s2);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcsstr function locates the first occurrence in the wide string pointed to by s1 of
  the sequence of wide characters (excluding the terminating null wide character) in the
  wide string pointed to by s2.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcsstr function returns a pointer to the located wide string, or a null pointer if the
  wide string is not found. If s2 points to a wide string with zero length, the function
  returns s1.
 
 <h5><a name="7.28.4.5.7" href="#7.28.4.5.7">7.28.4.5.7 The wcstok function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.28">&lt;wchar.h&gt;</a>
@@ -21991,7 +21991,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
              const wchar_t * restrict s2,
              wchar_t ** restrict ptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  A sequence of calls to the wcstok function breaks the wide string pointed to by s1 into
  a sequence of tokens, each of which is delimited by a wide character from the wide string
@@ -22022,7 +22022,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  by ptr so that subsequent calls, with a null pointer for s1 and the unmodified pointer
  value for ptr, shall start searching just past the element overwritten by a null wide
  character (if any).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 7 -->
  The wcstok function returns a pointer to the first wide character of a token, or a null
  pointer if there is no token.
@@ -22042,18 +22042,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 
 <h5><a name="7.28.4.5.8" href="#7.28.4.5.8">7.28.4.5.8 The wmemchr function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
          wchar_t *wmemchr(const wchar_t *s, wchar_t c,
               size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wmemchr function locates the first occurrence of c in the initial n wide characters of
  the object pointed to by s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wmemchr function returns a pointer to the located wide character, or a null pointer if
  the wide character does not occur in the object.
@@ -22062,39 +22062,39 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="7.28.4.6" href="#7.28.4.6">7.28.4.6 Miscellaneous functions</a></h5>
 
 <h5><a name="7.28.4.6.1" href="#7.28.4.6.1">7.28.4.6.1 The wcslen function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.28">&lt;wchar.h&gt;</a>
         size_t wcslen(const wchar_t *s);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcslen function computes the length of the wide string pointed to by s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wcslen function returns the number of wide characters that precede the terminating
  null wide character.
 
 <h5><a name="7.28.4.6.2" href="#7.28.4.6.2">7.28.4.6.2 The wmemset function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.28">&lt;wchar.h&gt;</a>
         wchar_t *wmemset(wchar_t *s, wchar_t c, size_t n);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wmemset function copies the value of c into each of the first n wide characters of
  the object pointed to by s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wmemset function returns the value of s.
 
 <h4><a name="7.28.5" href="#7.28.5">7.28.5 Wide character time conversion functions</a></h4>
 
 <h5><a name="7.28.5.1" href="#7.28.5.1">7.28.5.1 The wcsftime function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.26">&lt;time.h&gt;</a>
@@ -22104,7 +22104,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
              const wchar_t * restrict format,
              const struct tm * restrict timeptr);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcsftime function is equivalent to the strftime function, except that:
 <ul>
@@ -22116,7 +22116,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  corresponding sequences of wide characters.
 <li>  The return value indicates the number of wide characters.
 </ul>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If the total number of resulting wide characters including the terminating null wide
  character is not more than maxsize, the wcsftime function returns the number of
@@ -22155,7 +22155,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 456 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note335" href="#note335">335)</a> Thus, a particular mbstate_t object can be used, for example, with both the mbrtowc and
  mbsrtowcs functions as long as they are used to step sequentially through the same multibyte
  character string.
@@ -22164,35 +22164,35 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="7.28.6.1" href="#7.28.6.1">7.28.6.1 Single-byte/wide character conversion functions</a></h5>
 
 <h5><a name="7.28.6.1.1" href="#7.28.6.1.1">7.28.6.1.1 The btowc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.28">&lt;wchar.h&gt;</a>                                                                        *
         wint_t btowc(int c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The btowc function determines whether c constitutes a valid single-byte character in the
  initial shift state.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The btowc function returns WEOF if c has the value EOF or if (unsigned char)c
  does not constitute a valid single-byte character in the initial shift state. Otherwise, it
  returns the wide character representation of that character.
 
 <h5><a name="7.28.6.1.2" href="#7.28.6.1.2">7.28.6.1.2 The wctob function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.28">&lt;wchar.h&gt;</a>                                                                        *
         int wctob(wint_t c);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wctob function determines whether c corresponds to a member of the extended
  character set whose multibyte character representation is a single byte when in the initial
  shift state.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The wctob function returns EOF if c does not correspond to a multibyte character with
  length one in the initial shift state. Otherwise, it returns the single-byte representation of
@@ -22201,18 +22201,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="7.28.6.2" href="#7.28.6.2">7.28.6.2 Conversion state functions</a></h5>
 
 <h5><a name="7.28.6.2.1" href="#7.28.6.2.1">7.28.6.2.1 The mbsinit function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.28">&lt;wchar.h&gt;</a>
         int mbsinit(const mbstate_t *ps);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If ps is not a null pointer, the mbsinit function determines whether the referenced
  mbstate_t object describes an initial conversion state.
 <!--page 457 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The mbsinit function returns nonzero if ps is a null pointer or if the referenced object
  describes an initial conversion state; otherwise, it returns zero.
@@ -22232,7 +22232,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  encoding is state-dependent.
 
 <h5><a name="7.28.6.3.1" href="#7.28.6.3.1">7.28.6.3.1 The mbrlen function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
@@ -22240,7 +22240,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               size_t n,
               mbstate_t * restrict ps);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The mbrlen function is equivalent to the call:
 <pre>
@@ -22248,7 +22248,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
  where internal is the mbstate_t object for the mbrlen function, except that the
  expression designated by ps is evaluated only once.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The mbrlen function returns a value between zero and n, inclusive, (size_t)(-2),
  or (size_t)(-1).
@@ -22256,7 +22256,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 458 -->
 
 <h5><a name="7.28.6.3.2" href="#7.28.6.3.2">7.28.6.3.2 The mbrtowc function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
@@ -22265,7 +22265,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               size_t n,
               mbstate_t * restrict ps);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If s is a null pointer, the mbrtowc function is equivalent to the call:
 <pre>
@@ -22280,7 +22280,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  corresponding wide character and then, if pwc is not a null pointer, stores that value in
  the object pointed to by pwc. If the corresponding wide character is the null wide
  character, the resulting state described is the initial conversion state.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The mbrtowc function returns the first of the following that applies (given the current
  conversion state):
@@ -22307,13 +22307,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 459 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note336" href="#note336">336)</a> When n has at least the value of the MB_CUR_MAX macro, this case can only occur if s points at a
  sequence of redundant shift sequences (for implementations with state-dependent encodings).
 </small>
 
 <h5><a name="7.28.6.3.3" href="#7.28.6.3.3">7.28.6.3.3 The wcrtomb function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
@@ -22321,7 +22321,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               wchar_t wc,
               mbstate_t * restrict ps);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  If s is a null pointer, the wcrtomb function is equivalent to the call
 <pre>
@@ -22335,7 +22335,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  array whose first element is pointed to by s. At most MB_CUR_MAX bytes are stored. If
  wc is a null wide character, a null byte is stored, preceded by any shift sequence needed
  to restore the initial shift state; the resulting state described is the initial conversion state.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The wcrtomb function returns the number of bytes stored in the array object (including
  any shift sequences). When wc is not a valid wide character, an encoding error occurs:
@@ -22360,7 +22360,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 460 -->
 
 <h5><a name="7.28.6.4.1" href="#7.28.6.4.1">7.28.6.4.1 The mbsrtowcs function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.28">&lt;wchar.h&gt;</a>
@@ -22369,7 +22369,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
                size_t len,
                mbstate_t * restrict ps);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The mbsrtowcs function converts a sequence of multibyte characters that begins in the
  conversion state described by the object pointed to by ps, from the array indirectly
@@ -22386,7 +22386,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  just past the last multibyte character converted (if any). If conversion stopped due to
  reaching a terminating null character and if dst is not a null pointer, the resulting state
  described is the initial conversion state.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  If the input conversion encounters a sequence of bytes that do not form a valid multibyte
  character, an encoding error occurs: the mbsrtowcs function stores the value of the
@@ -22399,12 +22399,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 461 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note337" href="#note337">337)</a> Thus, the value of len is ignored if dst is a null pointer.
 </small>
 
 <h5><a name="7.28.6.4.2" href="#7.28.6.4.2">7.28.6.4.2 The wcsrtombs function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
@@ -22413,7 +22413,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               size_t len,
               mbstate_t * restrict ps);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcsrtombs function converts a sequence of wide characters from the array
  indirectly pointed to by src into a sequence of corresponding multibyte characters that
@@ -22431,7 +22431,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  address just past the last wide character converted (if any). If conversion stopped due to
  reaching a terminating null wide character, the resulting state described is the initial
  conversion state.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  If conversion stops because a wide character is reached that does not correspond to a
  valid multibyte character, an encoding error occurs: the wcsrtombs function stores the
@@ -22444,7 +22444,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 462 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note338" href="#note338">338)</a> If conversion stops because a terminating null wide character has been reached, the bytes stored
  include those necessary to reach the initial shift state immediately before the null byte.
 </small>
@@ -22494,7 +22494,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 463 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note339" href="#note339">339)</a> See ''future library directions'' (<a href="#7.30.13">7.30.13</a>).
 </small>
 
@@ -22520,7 +22520,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  both printing and white-space wide characters.<sup><a href="#note340"><b>340)</b></a></sup>
 <p><b> Forward references</b>: the wctob function (<a href="#7.28.6.1.2">7.28.6.1.2</a>).
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note340" href="#note340">340)</a> For example, if the expression isalpha(wctob(wc)) evaluates to true, then the call
  iswalpha(wc) also returns true. But, if the expression isgraph(wctob(wc)) evaluates to true
  (which cannot occur for wc == L' ' of course), then either iswgraph(wc) or iswprint(wc)
@@ -22528,25 +22528,25 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="7.29.2.1.1" href="#7.29.2.1.1">7.29.2.1.1 The iswalnum function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.29">&lt;wctype.h&gt;</a>
          int iswalnum(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswalnum function tests for any wide character for which iswalpha or
  iswdigit is true.
 
 <h5><a name="7.29.2.1.2" href="#7.29.2.1.2">7.29.2.1.2 The iswalpha function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.29">&lt;wctype.h&gt;</a>
          int iswalpha(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswalpha function tests for any wide character for which iswupper or
  iswlower is true, or any wide character that is one of a locale-specific set of alphabetic
@@ -22555,19 +22555,19 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  wide characters for which none of iswcntrl, iswdigit, iswpunct, or iswspace
  is true.<sup><a href="#note341"><b>341)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note341" href="#note341">341)</a> The functions iswlower and iswupper test true or false separately for each of these additional
  wide characters; all four combinations are possible.
 </small>
 
 <h5><a name="7.29.2.1.3" href="#7.29.2.1.3">7.29.2.1.3 The iswblank function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.29">&lt;wctype.h&gt;</a>
          int iswblank(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswblank function tests for any wide character that is a standard blank wide
  character or is one of a locale-specific set of wide characters for which iswspace is true
@@ -22576,30 +22576,30 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  locale, iswblank returns true only for the standard blank characters.
 
 <h5><a name="7.29.2.1.4" href="#7.29.2.1.4">7.29.2.1.4 The iswcntrl function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.29">&lt;wctype.h&gt;</a>
          int iswcntrl(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswcntrl function tests for any control wide character.
 
 <h5><a name="7.29.2.1.5" href="#7.29.2.1.5">7.29.2.1.5 The iswdigit function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.29">&lt;wctype.h&gt;</a>
          int iswdigit(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswdigit function tests for any wide character that corresponds to a decimal-digit
  character (as defined in <a href="#5.2.1">5.2.1</a>).
 
 <h5><a name="7.29.2.1.6" href="#7.29.2.1.6">7.29.2.1.6 The iswgraph function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.29">&lt;wctype.h&gt;</a>
@@ -22610,56 +22610,56 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
  
 <!--page 465 -->
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswgraph function tests for any wide character for which iswprint is true and
  iswspace is false.<sup><a href="#note342"><b>342)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note342" href="#note342">342)</a> Note that the behavior of the iswgraph and iswpunct functions may differ from their
  corresponding functions in <a href="#7.4.1">7.4.1</a> with respect to printing, white-space, single-byte execution
  characters other than ' '.
 </small>
 
 <h5><a name="7.29.2.1.7" href="#7.29.2.1.7">7.29.2.1.7 The iswlower function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.29">&lt;wctype.h&gt;</a>
          int iswlower(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswlower function tests for any wide character that corresponds to a lowercase
  letter or is one of a locale-specific set of wide characters for which none of iswcntrl,
  iswdigit, iswpunct, or iswspace is true.
 
 <h5><a name="7.29.2.1.8" href="#7.29.2.1.8">7.29.2.1.8 The iswprint function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.29">&lt;wctype.h&gt;</a>
          int iswprint(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswprint function tests for any printing wide character.
 
 <h5><a name="7.29.2.1.9" href="#7.29.2.1.9">7.29.2.1.9 The iswpunct function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.29">&lt;wctype.h&gt;</a>
          int iswpunct(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswpunct function tests for any printing wide character that is one of a locale-
  specific set of punctuation wide characters for which neither iswspace nor iswalnum
  is true.<sup><a href="#note342"><b>342)</b></a></sup>
 
 <h5><a name="7.29.2.1.10" href="#7.29.2.1.10">7.29.2.1.10 The iswspace function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.29">&lt;wctype.h&gt;</a>
@@ -22669,33 +22669,33 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
  
 <!--page 466 -->
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswspace function tests for any wide character that corresponds to a locale-specific
  set of white-space wide characters for which none of iswalnum, iswgraph, or
  iswpunct is true.
 
 <h5><a name="7.29.2.1.11" href="#7.29.2.1.11">7.29.2.1.11 The iswupper function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.29">&lt;wctype.h&gt;</a>
         int iswupper(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswupper function tests for any wide character that corresponds to an uppercase
  letter or is one of a locale-specific set of wide characters for which none of iswcntrl,
  iswdigit, iswpunct, or iswspace is true.
 
 <h5><a name="7.29.2.1.12" href="#7.29.2.1.12">7.29.2.1.12 The iswxdigit function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.29">&lt;wctype.h&gt;</a>
         int iswxdigit(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswxdigit function tests for any wide character that corresponds to a
  hexadecimal-digit character (as defined in <a href="#6.4.4.1">6.4.4.1</a>).
@@ -22707,13 +22707,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  subclause (<a href="#7.29.2.1">7.29.2.1</a>).
 
 <h5><a name="7.29.2.2.1" href="#7.29.2.2.1">7.29.2.2.1 The iswctype function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.29">&lt;wctype.h&gt;</a>
         int iswctype(wint_t wc, wctype_t desc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The iswctype function determines whether the wide character wc has the property
  described by desc. The current setting of the LC_CTYPE category shall be the same as
@@ -22736,7 +22736,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          iswctype(wc,      wctype("upper"))              //   iswupper(wc)
          iswctype(wc,      wctype("xdigit"))             //   iswxdigit(wc)
 </pre>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The iswctype function returns nonzero (true) if and only if the value of the wide
  character wc has the property described by desc. If desc is zero, the iswctype
@@ -22744,20 +22744,20 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><b> Forward references</b>: the wctype function (<a href="#7.29.2.2.2">7.29.2.2.2</a>).
 
 <h5><a name="7.29.2.2.2" href="#7.29.2.2.2">7.29.2.2.2 The wctype function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.29">&lt;wctype.h&gt;</a>
          wctype_t wctype(const char *property);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wctype function constructs a value with type wctype_t that describes a class of
  wide characters identified by the string argument property.
 <p><!--para 3 -->
  The strings listed in the description of the iswctype function shall be valid in all
  locales as property arguments to the wctype function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  If property identifies a valid class of wide characters according to the LC_CTYPE
  category of the current locale, the wctype function returns a nonzero value that is valid
@@ -22771,16 +22771,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="7.29.3.1" href="#7.29.3.1">7.29.3.1 Wide character case mapping functions</a></h5>
 
 <h5><a name="7.29.3.1.1" href="#7.29.3.1.1">7.29.3.1.1 The towlower function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.29">&lt;wctype.h&gt;</a>
         wint_t towlower(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The towlower function converts an uppercase letter to a corresponding lowercase letter.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If the argument is a wide character for which iswupper is true and there are one or
  more corresponding wide characters, as specified by the current locale, for which
@@ -22789,16 +22789,16 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  returned unchanged.
 
 <h5><a name="7.29.3.1.2" href="#7.29.3.1.2">7.29.3.1.2 The towupper function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #include <a href="#7.29">&lt;wctype.h&gt;</a>
         wint_t towupper(wint_t wc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The towupper function converts a lowercase letter to a corresponding uppercase letter.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If the argument is a wide character for which iswlower is true and there are one or
  more corresponding wide characters, as specified by the current locale, for which
@@ -22814,13 +22814,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 469 -->
 
 <h5><a name="7.29.3.2.1" href="#7.29.3.2.1">7.29.3.2.1 The towctrans function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.29">&lt;wctype.h&gt;</a>
          wint_t towctrans(wint_t wc, wctrans_t desc);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The towctrans function maps the wide character wc using the mapping described by
  desc. The current setting of the LC_CTYPE category shall be the same as during the call
@@ -22832,26 +22832,26 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          towctrans(wc, wctrans("tolower"))                     // towlower(wc)
          towctrans(wc, wctrans("toupper"))                     // towupper(wc)
 </pre>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The towctrans function returns the mapped value of wc using the mapping described
  by desc. If desc is zero, the towctrans function returns the value of wc.
 
 <h5><a name="7.29.3.2.2" href="#7.29.3.2.2">7.29.3.2.2 The wctrans function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.29">&lt;wctype.h&gt;</a>
          wctrans_t wctrans(const char *property);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wctrans function constructs a value with type wctrans_t that describes a
  mapping between wide characters identified by the string argument property.
 <p><!--para 3 -->
  The strings listed in the description of the towctrans function shall be valid in all
  locales as property arguments to the wctrans function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  If property identifies a valid mapping of wide characters according to the LC_CTYPE
  category of the current locale, the wctrans function returns a nonzero value that is valid
@@ -25159,7 +25159,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  negative and positive infinity are representable in IEC 60559 formats, all real numbers lie
  within the range of representable values.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note343" href="#note343">343)</a> Implementations that do not define __STDC_IEC_559__ are not required to conform to these
  specifications.
 </small>
@@ -25180,11 +25180,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
  
 <!--page 522 -->
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 2 -->
  The long double type should match an IEC 60559 extended format.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note344" href="#note344">344)</a> ''Extended'' is IEC 60559's double-extended data format. Extended refers to both the common 80-bit
  and quadruple 128-bit IEC 60559 formats.
 </small>
@@ -25198,7 +25198,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  the term NaN to denote quiet NaNs. The NAN and INFINITY macros and the nan
  functions in <a href="#7.12">&lt;math.h&gt;</a> provide designations for IEC 60559 NaNs and infinities.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note346" href="#note346">346)</a> Since NaNs created by IEC 60559 operations are always quiet, quiet NaNs (along with infinities) are
  sufficient for closure of the arithmetic.
 </small>
@@ -25295,7 +25295,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  conversion of a non-integral floating value raises the ''inexact'' floating-point exception is
  unspecified.<sup><a href="#note347"><b>347)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note347" href="#note347">347)</a> ANSI/IEEE 854, but not IEC 60559 (ANSI/IEEE 754), directly specifies that floating-to-integer
  conversions raise the ''inexact'' floating-point exception for non-integer in-range values. In those
  cases where it matters, library functions can be used to effect such conversions with or without raising
@@ -25323,7 +25323,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  implementation cannot convert a minus-signed sequence by negating the converted
  unsigned sequence.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note348" href="#note348">348)</a> If the minimum-width IEC 60559 extended format (64 bits of precision) is supported,
  DECIMAL_DIG shall be at least 21. If IEC 60559 double (53 bits of precision) is the widest
  IEC 60559 format supported, then DECIMAL_DIG shall be at least 17. (By contrast, LDBL_DIG and
@@ -25335,7 +25335,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  type, the expression is converted as if by assignment<sup><a href="#note349"><b>349)</b></a></sup> to the return type of the function
  and the resulting value is returned to the caller.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note349" href="#note349">349)</a> Assignment removes any extra range and precision.
 </small>
 
@@ -25344,7 +25344,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  A contracted expression is correctly rounded (once) and treats infinities, NaNs, signed
  zeros, subnormals, and the rounding directions in a manner consistent with the basic
  arithmetic operations covered by IEC 60559.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 2 -->
  A contracted expression should raise floating-point exceptions in a manner generally
  consistent with the basic arithmetic operations.                                    *
@@ -25356,7 +25356,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  IEC 60559 dynamic rounding precision and trap enablement modes, if the
  implementation supports them.<sup><a href="#note350"><b>350)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note350" href="#note350">350)</a> This specification does not require dynamic rounding precision nor trap enablement modes.
 </small>
 
@@ -25373,7 +25373,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 526 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note351" href="#note351">351)</a> If the state for the FENV_ACCESS pragma is ''off'', the implementation is free to assume the floating-
  point control modes will be the default ones and the floating-point status flags will not be tested,
  which allows certain optimizations (see <a href="#F.9">F.9</a>).
@@ -25387,13 +25387,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <li>  The rounding precision mode (if supported) is set so that results are not shortened.
 <li>  Trapping or stopping (if supported) is disabled on all floating-point exceptions.
 </ul>
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 2 -->
  The implementation should produce a diagnostic message for each translation-time
  floating-point exception, other than ''inexact'';<sup><a href="#note352"><b>352)</b></a></sup> the implementation should then
  proceed with the translation of the program.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note352" href="#note352">352)</a> As floating constants are converted to appropriate internal representations at translation time, their
  conversion is subject to default rounding modes and raises no execution-time floating-point exceptions
  (even where the state of the FENV_ACCESS pragma is ''on''). Library functions, for example
@@ -25443,7 +25443,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  execution time.
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note353" href="#note353">353)</a> Where the state for the FENV_ACCESS pragma is ''on'', results of inexact expressions like 1.0/3.0
  are affected by rounding modes set at execution time, and expressions such as 0.0/0.0 and
  1.0/0.0 generate execution-time floating-point exceptions. The programmer can achieve the
@@ -25492,7 +25492,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  their internal representations occur at translation time in all cases.
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note354" href="#note354">354)</a> Use of float_t and double_t variables increases the likelihood of translation-time computation.
  For example, the automatic initialization
 
@@ -25604,7 +25604,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 530 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note355" href="#note355">355)</a> Strict support for signaling NaNs -- not required by this specification -- would invalidate these and
  other transformations that remove arithmetic operators.
 </small>
@@ -25691,7 +25691,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  precision modes shall assure further that the result of the operation raises no floating-
  point exception when converted to the semantic type of the operation.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note357" href="#note357">357)</a> 0 - 0 yields -0 instead of +0 just when the rounding direction is downward.
 </small>
 
@@ -25744,13 +25744,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  For families of functions, the specifications apply to all of the functions even though only
  the principal function is shown. Unless otherwise specified, where the symbol ''(+-)''
  occurs in both an argument and the result, the result has the same sign as the argument.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 13 -->
  If a function with one or more NaN arguments returns a NaN result, the result should be
  the same as one of the NaN arguments (after possible type conversion), except perhaps
  for the sign.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note358" href="#note358">358)</a> IEC 60559 allows different definitions of underflow. They all result in the same values, but differ on
  when the floating-point exception is raised.
 </small>
@@ -25804,7 +25804,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <li>  atan2((+-)(inf), +(inf)) returns (+-)pi /4.
 </ul>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note360" href="#note360">360)</a> atan2(0, 0) does not raise the ''invalid'' floating-point exception, nor does atan2( y , 0) raise
  the ''divide-by-zero'' floating-point exception.
 </small>
@@ -26349,7 +26349,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
              isnan(y)) ? x : y; }
 </pre>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note361" href="#note361">361)</a> Ideally, fmax would be sensitive to the sign of zero, for example fmax(-0.0, +0.0) would
  return +0; however, implementation in software might be impractical.
 </small>
@@ -26402,7 +26402,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  IEC 60559 real floating-point arithmetic. An implementation that defines *
  __STDC_IEC_559_COMPLEX__ shall conform to the specifications in this annex.<sup><a href="#note362"><b>362)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note362" href="#note362">362)</a> Implementations that do not define __STDC_IEC_559_COMPLEX__ are not required to conform
  to these specifications.
 </small>
@@ -26453,7 +26453,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  When a value of real type is converted to an imaginary type, the result is a positive
  imaginary zero.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note363" href="#note363">363)</a> See <a href="#6.3.1.2">6.3.1.2</a>.
 </small>
 
@@ -26485,7 +26485,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 548 -->
 
 <h4><a name="G.5.1" href="#G.5.1">G.5.1 Multiplicative operators</a></h4>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 1 -->
  If one operand has real type and the other operand has imaginary type, then the result has
  imaginary type. If both operands have imaginary type, then the result has real type. (If
@@ -26660,13 +26660,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  with division, provides better roundoff characteristics.
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note364" href="#note364">364)</a> These properties are already implied for those cases covered in the tables, but are required for all cases
  (at least where the state for CX_LIMITED_RANGE is ''off'').
 </small>
 
 <h4><a name="G.5.2" href="#G.5.2">G.5.2 Additive operators</a></h4>
-<h6>Semantics</h6>
+<p><b>Semantics</b>
 <p><!--para 1 -->
  If both operands have imaginary type, then the result has imaginary type. (If one operand
  has real type and the other operand has imaginary type, or if either operand has complex
@@ -26760,7 +26760,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 553 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note365" href="#note365">365)</a> As noted in <a href="#G.3">G.3</a>, a complex value with at least one infinite part is regarded as an infinity even if its
  other part is a NaN.
 </small>
@@ -26981,7 +26981,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  The cpow functions raise floating-point exceptions if appropriate for the calculation of
  the parts of the result, and may also raise spurious floating-point exceptions.<sup><a href="#note366"><b>366)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note366" href="#note366">366)</a> This allows cpow( z , c ) to be implemented as cexp(c      clog( z )) without precluding
  implementations that treat special cases more carefully.
 </small>
@@ -28409,7 +28409,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  Subclause <a href="#K.3">K.3</a> should be read as if it were merged into the parallel structure of named
  subclauses of clause 7.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note367" href="#note367">367)</a> Implementations that do not define __STDC_LIB_EXT1__ are not required to conform to these
  specifications.
 </small>
@@ -28443,7 +28443,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 598 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note368" href="#note368">368)</a> Future revisions of this International Standard may define meanings for other values of
  __STDC_WANT_LIB_EXT1__.
 </small>
@@ -28500,7 +28500,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 599 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note370" href="#note370">370)</a> Although runtime-constraints replace many cases of undefined behavior, undefined behavior still
  exists in this annex. Implementations are free to detect any case of undefined behavior and treat it as a
  runtime-constraint violation by calling the runtime-constraint handler. This license comes directly
@@ -28517,7 +28517,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
  which is type int.<sup><a href="#note371"><b>371)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note371" href="#note371">371)</a> As a matter of programming style, errno_t may be used as the type of something that deals only
  with the values that might be found in errno. For example, a function which returns the value of
  errno might be declared as having the return type errno_t.
@@ -28533,7 +28533,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </pre>
  which is the type size_t.<sup><a href="#note372"><b>372)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note372" href="#note372">372)</a> See the description of the RSIZE_MAX macro in <a href="#7.20">&lt;stdint.h&gt;</a>.
 </small>
 
@@ -28548,7 +28548,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  which expands to a value<sup><a href="#note373"><b>373)</b></a></sup> of type size_t. Functions that have parameters of type
  rsize_t consider it a runtime-constraint violation if the values of those parameters are
  greater than RSIZE_MAX.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 3 -->
  Extremely large object sizes are frequently a sign that an object's size was calculated
  incorrectly. For example, negative numbers appear as very large positive numbers when
@@ -28565,7 +28565,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 600 -->
  is no object size that is considered a runtime-constraint violation.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note373" href="#note373">373)</a> The macro RSIZE_MAX need not expand to a constant expression.
 </small>
 
@@ -28599,7 +28599,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="K.3.5.1" href="#K.3.5.1">K.3.5.1 Operations on files</a></h5>
 
 <h5><a name="K.3.5.1.1" href="#K.3.5.1.1">K.3.5.1.1 The tmpfile_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #define __STDC_WANT_LIB_EXT1__ 1
@@ -28611,7 +28611,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  streamptr shall not be a null pointer.
 <p><!--para 3 -->
  If there is a runtime-constraint violation, tmpfile_s does not attempt to create a file.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The tmpfile_s function creates a temporary binary file that is different from any other
  existing file and that will automatically be removed when it is closed or at program
@@ -28624,18 +28624,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If the file was created successfully, then the pointer to FILE pointed to by streamptr
  will be set to the pointer to the object controlling the opened file. Otherwise, the pointer
  to FILE pointed to by streamptr will be set to a null pointer.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
  It should be possible to open at least TMP_MAX_S temporary files during the lifetime of
  the program (this limit may be shared with tmpnam_s) and there should be no limit on
  the number simultaneously open other than this limit and any limit on the number of open
  files (FOPEN_MAX).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  The tmpfile_s function returns zero if it created the file. If it did not create the file or
  there was a runtime-constraint violation, tmpfile_s returns a nonzero value.
 
 <h5><a name="K.3.5.1.2" href="#K.3.5.1.2">K.3.5.1.2 The tmpnam_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -28646,7 +28646,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 2 -->
  s shall not be a null pointer. maxsize shall be less than or equal to RSIZE_MAX.
  maxsize shall be greater than the length of the generated file name string.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 3 -->
  The tmpnam_s function generates a string that is a valid file name and that is not the
  same as the name of an existing file.<sup><a href="#note374"><b>374)</b></a></sup> The function is potentially capable of generating
@@ -28665,7 +28665,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 6 -->
  The implementation shall behave as if no library function except tmpnam calls the
  tmpnam_s function.<sup><a href="#note375"><b>375)</b></a></sup>
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 7 -->
  After a program obtains a file name using the tmpnam_s function and before the
  program creates a file with that name, the possibility exists that someone else may create
@@ -28673,7 +28673,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  should be used instead of tmpnam_s when possible. One situation that requires the use
  of the tmpnam_s function is when the program needs to create a temporary directory
  rather than a temporary file.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 8 -->
  If no suitable string can be generated, or if there is a runtime-constraint violation, the
  tmpnam_s function writes a null character to s[0] (only if s is not null and maxsize
@@ -28681,11 +28681,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 9 -->
  Otherwise, the tmpnam_s function writes the string in the array pointed to by s and
  returns zero.
-<h6>Environmental limits</h6>
+<p><b>Environmental limits</b>
 <p><!--para 10 -->
  The value of the macro TMP_MAX_S shall be at least 25.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note374" href="#note374">374)</a> Files created using strings generated by the tmpnam_s function are temporary only in the sense that
  their names should not collide with those generated by conventional naming rules for the
  implementation. It is still necessary to use the remove function to remove such files when their use
@@ -28701,7 +28701,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="K.3.5.2" href="#K.3.5.2">K.3.5.2 File access functions</a></h5>
 
 <h5><a name="K.3.5.2.1" href="#K.3.5.2.1">K.3.5.2.1 The fopen_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #define __STDC_WANT_LIB_EXT1__ 1
@@ -28722,7 +28722,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
  
 <!--page 603 -->
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The fopen_s function opens the file whose name is the string pointed to by
  filename, and associates a stream with it.
@@ -28783,17 +28783,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 604 -->
  to FILE pointed to by streamptr will be set to a null pointer.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 9 -->
  The fopen_s function returns zero if it opened the file. If it did not open the file or if
  there was a runtime-constraint violation, fopen_s returns a nonzero value.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note376" href="#note376">376)</a> These are the same permissions that the file would have been created with by fopen.
 </small>
 
 <h5><a name="K.3.5.2.2" href="#K.3.5.2.2">K.3.5.2.2 The freopen_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #define __STDC_WANT_LIB_EXT1__ 1
@@ -28810,7 +28810,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, freopen_s neither attempts to close any file
  associated with stream nor attempts to open a file. Furthermore, if newstreamptr is
  not a null pointer, fopen_s sets *newstreamptr to the null pointer.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The freopen_s function opens the file whose name is the string pointed to by
  filename and associates the stream pointed to by stream with it. The mode
@@ -28829,7 +28829,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If the file was opened successfully, then the pointer to FILE pointed to by
  newstreamptr will be set to the value of stream. Otherwise, the pointer to FILE
  pointed to by newstreamptr will be set to a null pointer.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 8 -->
  The freopen_s function returns zero if it opened the file. If it did not open the file or
  there was a runtime-constraint violation, freopen_s returns a nonzero value.
@@ -28842,7 +28842,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  unspecified values.
 
 <h5><a name="K.3.5.3.1" href="#K.3.5.3.1">K.3.5.3.1 The fprintf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #define __STDC_WANT_LIB_EXT1__ 1
@@ -28860,11 +28860,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation,<sup><a href="#note378"><b>378)</b></a></sup> the fprintf_s function does not attempt
  to produce further output, and it is unspecified to what extent fprintf_s produced
  output before discovering the runtime-constraint violation.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The fprintf_s function is equivalent to the fprintf function except for the explicit
  runtime-constraints listed above.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The fprintf_s function returns the number of characters transmitted, or a negative
  value if an output error, encoding error, or runtime-constraint violation occurred.
@@ -28874,7 +28874,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 606 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note377" href="#note377">377)</a> It is not a runtime-constraint violation for the characters %n to appear in sequence in the string pointed
  at by format when those characters are not a interpreted as a %n specifier. For example, if the entire
  format string was %%n.
@@ -28885,7 +28885,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="K.3.5.3.2" href="#K.3.5.3.2">K.3.5.3.2 The fscanf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -28901,7 +28901,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation,<sup><a href="#note379"><b>379)</b></a></sup> the fscanf_s function does not attempt to
  perform further input, and it is unspecified to what extent fscanf_s performed input
  before discovering the runtime-constraint violation.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The fscanf_s function is equivalent to fscanf except that the c, s, and [ conversion
  specifiers apply to a pair of arguments (unless assignment suppression is indicated by a
@@ -28913,7 +28913,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 5 -->
  A matching failure occurs if the number of elements in a receiving object is insufficient to
  hold the converted input (including any trailing null character).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  The fscanf_s function returns the value of the macro EOF if an input failure occurs
  before any conversion or if there is a runtime-constraint violation. Otherwise, the
@@ -28954,7 +28954,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  array of six characters to store it.
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note379" href="#note379">379)</a> Because an implementation may treat any undefined behavior as a runtime-constraint violation, an
  implementation may treat any unsupported specifiers in the string pointed to by format as a runtime-
  constraint violation.
@@ -28972,7 +28972,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="K.3.5.3.3" href="#K.3.5.3.3">K.3.5.3.3 The printf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #define __STDC_WANT_LIB_EXT1__ 1
@@ -28991,23 +28991,23 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
  
 <!--page 608 -->
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The printf_s function is equivalent to the printf function except for the explicit
  runtime-constraints listed above.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The printf_s function returns the number of characters transmitted, or a negative
  value if an output error, encoding error, or runtime-constraint violation occurred.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note381" href="#note381">381)</a> It is not a runtime-constraint violation for the characters %n to appear in sequence in the string pointed
  at by format when those characters are not a interpreted as a %n specifier. For example, if the entire
  format string was %%n.
 </small>
 
 <h5><a name="K.3.5.3.4" href="#K.3.5.3.4">K.3.5.3.4 The scanf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #define __STDC_WANT_LIB_EXT1__ 1
@@ -29022,11 +29022,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, the scanf_s function does not attempt to
  perform further input, and it is unspecified to what extent scanf_s performed input
  before discovering the runtime-constraint violation.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The scanf_s function is equivalent to fscanf_s with the argument stdin
  interposed before the arguments to scanf_s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The scanf_s function returns the value of the macro EOF if an input failure occurs
  before any conversion or if there is a runtime-constraint violation. Otherwise, the
@@ -29034,7 +29034,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  provided for, or even zero, in the event of an early matching failure.
 
 <h5><a name="K.3.5.3.5" href="#K.3.5.3.5">K.3.5.3.5 The snprintf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #define __STDC_WANT_LIB_EXT1__ 1
@@ -29054,14 +29054,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, then if s is not a null pointer and n is greater
  than zero and less than RSIZE_MAX, then the snprintf_s function sets s[0] to the
  null character.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The snprintf_s function is equivalent to the snprintf function except for the
  explicit runtime-constraints listed above.
 <p><!--para 5 -->
  The snprintf_s function, unlike sprintf_s, will truncate the result to fit within the
  array pointed to by s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  The snprintf_s function returns the number of characters that would have been
  written had n been sufficiently large, not counting the terminating null character, or a
@@ -29069,14 +29069,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  output has been completely written if and only if the returned value is nonnegative and
  less than n.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note382" href="#note382">382)</a> It is not a runtime-constraint violation for the characters %n to appear in sequence in the string pointed
  at by format when those characters are not a interpreted as a %n specifier. For example, if the entire
  format string was %%n.
 </small>
 
 <h5><a name="K.3.5.3.6" href="#K.3.5.3.6">K.3.5.3.6 The sprintf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #define __STDC_WANT_LIB_EXT1__ 1
@@ -29100,28 +29100,28 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, then if s is not a null pointer and n is greater
  than zero and less than RSIZE_MAX, then the sprintf_s function sets s[0] to the
  null character.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The sprintf_s function is equivalent to the sprintf function except for the
  parameter n and the explicit runtime-constraints listed above.
 <p><!--para 5 -->
  The sprintf_s function, unlike snprintf_s, treats a result too big for the array
  pointed to by s as a runtime-constraint violation.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  If no runtime-constraint violation occurred, the sprintf_s function returns the number
  of characters written in the array, not counting the terminating null character. If an
  encoding error occurred, sprintf_s returns a negative value. If any other runtime-
  constraint violation occurred, sprintf_s returns zero.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note383" href="#note383">383)</a> It is not a runtime-constraint violation for the characters %n to appear in sequence in the string pointed
  at by format when those characters are not a interpreted as a %n specifier. For example, if the entire
  format string was %%n.
 </small>
 
 <h5><a name="K.3.5.3.7" href="#K.3.5.3.7">K.3.5.3.7 The sscanf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #define __STDC_WANT_LIB_EXT1__ 1
@@ -29137,13 +29137,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, the sscanf_s function does not attempt to
  perform further input, and it is unspecified to what extent sscanf_s performed input
  before discovering the runtime-constraint violation.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The sscanf_s function is equivalent to fscanf_s, except that input is obtained from
  a string (specified by the argument s) rather than from a stream. Reaching the end of the
  string is equivalent to encountering end-of-file for the fscanf_s function. If copying
  takes place between objects that overlap, the objects take on unspecified values.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The sscanf_s function returns the value of the macro EOF if an input failure occurs
  before any conversion or if there is a runtime-constraint violation. Otherwise, the
@@ -29152,7 +29152,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 611 -->
 
 <h5><a name="K.3.5.3.8" href="#K.3.5.3.8">K.3.5.3.8 The vfprintf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #define __STDC_WANT_LIB_EXT1__ 1
@@ -29172,23 +29172,23 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, the vfprintf_s function does not attempt to
  produce further output, and it is unspecified to what extent vfprintf_s produced
  output before discovering the runtime-constraint violation.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The vfprintf_s function is equivalent to the vfprintf function except for the
  explicit runtime-constraints listed above.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The vfprintf_s function returns the number of characters transmitted, or a negative
  value if an output error, encoding error, or runtime-constraint violation occurred.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note384" href="#note384">384)</a> It is not a runtime-constraint violation for the characters %n to appear in sequence in the string pointed
  at by format when those characters are not a interpreted as a %n specifier. For example, if the entire
  format string was %%n.
 </small>
 
 <h5><a name="K.3.5.3.9" href="#K.3.5.3.9">K.3.5.3.9 The vfscanf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #define __STDC_WANT_LIB_EXT1__ 1
@@ -29211,27 +29211,27 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, the vfscanf_s function does not attempt to
  perform further input, and it is unspecified to what extent vfscanf_s performed input
  before discovering the runtime-constraint violation.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The vfscanf_s function is equivalent to fscanf_s, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vfscanf_s function does not invoke the
  va_end macro.<sup><a href="#note385"><b>385)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The vfscanf_s function returns the value of the macro EOF if an input failure occurs
  before any conversion or if there is a runtime-constraint violation. Otherwise, the
  vfscanf_s function returns the number of input items assigned, which can be fewer
  than provided for, or even zero, in the event of an early matching failure.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note385" href="#note385">385)</a> As the functions vfprintf_s, vfscanf_s, vprintf_s, vscanf_s, vsnprintf_s,
  vsprintf_s, and vsscanf_s invoke the va_arg macro, the value of arg after the return is
  indeterminate.
 </small>
 
 <h5><a name="K.3.5.3.10" href="#K.3.5.3.10">K.3.5.3.10 The vprintf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #define __STDC_WANT_LIB_EXT1__ 1
@@ -29251,23 +29251,23 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  before discovering the runtime-constraint violation.
  
 <!--page 613 -->
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The vprintf_s function is equivalent to the vprintf function except for the explicit
  runtime-constraints listed above.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The vprintf_s function returns the number of characters transmitted, or a negative
  value if an output error, encoding error, or runtime-constraint violation occurred.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note386" href="#note386">386)</a> It is not a runtime-constraint violation for the characters %n to appear in sequence in the string pointed
  at by format when those characters are not a interpreted as a %n specifier. For example, if the entire
  format string was %%n.
 </small>
 
 <h5><a name="K.3.5.3.11" href="#K.3.5.3.11">K.3.5.3.11 The vscanf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -29284,13 +29284,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, the vscanf_s function does not attempt to
  perform further input, and it is unspecified to what extent vscanf_s performed input
  before discovering the runtime-constraint violation.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The vscanf_s function is equivalent to scanf_s, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vscanf_s function does not invoke the
  va_end macro.<sup><a href="#note387"><b>387)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The vscanf_s function returns the value of the macro EOF if an input failure occurs
  before any conversion or if there is a runtime-constraint violation. Otherwise, the
@@ -29302,14 +29302,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 614 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note387" href="#note387">387)</a> As the functions vfprintf_s, vfscanf_s, vprintf_s, vscanf_s, vsnprintf_s,
  vsprintf_s, and vsscanf_s invoke the va_arg macro, the value of arg after the return is
  indeterminate.
 </small>
 
 <h5><a name="K.3.5.3.12" href="#K.3.5.3.12">K.3.5.3.12 The vsnprintf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #define __STDC_WANT_LIB_EXT1__ 1
@@ -29330,14 +29330,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, then if s is not a null pointer and n is greater
  than zero and less than RSIZE_MAX, then the vsnprintf_s function sets s[0] to the
  null character.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The vsnprintf_s function is equivalent to the vsnprintf function except for the
  explicit runtime-constraints listed above.
 <p><!--para 5 -->
  The vsnprintf_s function, unlike vsprintf_s, will truncate the result to fit within
  the array pointed to by s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  The vsnprintf_s function returns the number of characters that would have been
  written had n been sufficiently large, not counting the terminating null character, or a
@@ -29350,14 +29350,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 615 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note388" href="#note388">388)</a> It is not a runtime-constraint violation for the characters %n to appear in sequence in the string pointed
  at by format when those characters are not a interpreted as a %n specifier. For example, if the entire
  format string was %%n.
 </small>
 
 <h5><a name="K.3.5.3.13" href="#K.3.5.3.13">K.3.5.3.13 The vsprintf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #define __STDC_WANT_LIB_EXT1__ 1
@@ -29379,14 +29379,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, then if s is not a null pointer and n is greater
  than zero and less than RSIZE_MAX, then the vsprintf_s function sets s[0] to the
  null character.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The vsprintf_s function is equivalent to the vsprintf function except for the
  parameter n and the explicit runtime-constraints listed above.
 <p><!--para 5 -->
  The vsprintf_s function, unlike vsnprintf_s, treats a result too big for the array
  pointed to by s as a runtime-constraint violation.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  If no runtime-constraint violation occurred, the vsprintf_s function returns the
  number of characters written in the array, not counting the terminating null character. If
@@ -29398,14 +29398,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 616 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note389" href="#note389">389)</a> It is not a runtime-constraint violation for the characters %n to appear in sequence in the string pointed
  at by format when those characters are not a interpreted as a %n specifier. For example, if the entire
  format string was %%n.
 </small>
 
 <h5><a name="K.3.5.3.14" href="#K.3.5.3.14">K.3.5.3.14 The vsscanf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #define __STDC_WANT_LIB_EXT1__ 1
@@ -29423,20 +29423,20 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, the vsscanf_s function does not attempt to
  perform further input, and it is unspecified to what extent vsscanf_s performed input
  before discovering the runtime-constraint violation.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The vsscanf_s function is equivalent to sscanf_s, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vsscanf_s function does not invoke the
  va_end macro.<sup><a href="#note390"><b>390)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The vsscanf_s function returns the value of the macro EOF if an input failure occurs
  before any conversion or if there is a runtime-constraint violation. Otherwise, the
  vscanf_s function returns the number of input items assigned, which can be fewer than
  provided for, or even zero, in the event of an early matching failure.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note390" href="#note390">390)</a> As the functions vfprintf_s, vfscanf_s, vprintf_s, vscanf_s, vsnprintf_s,
  vsprintf_s, and vsscanf_s invoke the va_arg macro, the value of arg after the return is
  indeterminate.
@@ -29445,7 +29445,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="K.3.5.4" href="#K.3.5.4">K.3.5.4 Character input/output functions</a></h5>
 
 <h5><a name="K.3.5.4.1" href="#K.3.5.4.1">K.3.5.4.1 The gets_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #define __STDC_WANT_LIB_EXT1__ 1
@@ -29466,7 +29466,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, s[0] is set to the null character, and characters
  are read and discarded from stdin until a new-line character is read, or end-of-file or a
  read error occurs.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The gets_s function reads at most one less than the number of characters specified by n
  from the stream pointed to by stdin, into the array pointed to by s. No additional
@@ -29477,14 +29477,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If end-of-file is encountered and no characters have been read into the array, or if a read
  error occurs during the operation, then s[0] is set to the null character, and the other
  elements of s take unspecified values.
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
 <p><!--para 6 -->
  The fgets function allows properly-written programs to safely process input lines too
  long to store in the result array. In general this requires that callers of fgets pay
  attention to the presence or absence of a new-line character in the result array. Consider
  using fgets (along with any needed processing based on new-line characters) instead of
  gets_s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 7 -->
  The gets_s function returns s if successful. If there was a runtime-constraint violation,
  or if end-of-file is encountered and no characters have been read into the array, or if a
@@ -29495,7 +29495,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 618 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note391" href="#note391">391)</a> The gets_s function, unlike the historical gets function, makes it a runtime-constraint violation for
  a line of input to overflow the buffer to store it. Unlike the fgets function, gets_s maintains a
  one-to-one relationship between input lines and successful calls to gets_s. Programs that use gets
@@ -29529,7 +29529,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="K.3.6.1" href="#K.3.6.1">K.3.6.1 Runtime-constraint handling</a></h5>
 
 <h5><a name="K.3.6.1.1" href="#K.3.6.1.1">K.3.6.1.1 The set_constraint_handler_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -29537,7 +29537,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
          constraint_handler_t set_constraint_handler_s(
               constraint_handler_t handler);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The set_constraint_handler_s function sets the runtime-constraint handler to
  be handler. The runtime-constraint handler is the function to be called when a library
@@ -29561,18 +29561,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 5 -->
  If the handler argument to set_constraint_handler_s is a null pointer, the
  implementation default handler becomes the current constraint handler.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  The set_constraint_handler_s function returns a pointer to the previously
  registered handler.<sup><a href="#note392"><b>392)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note392" href="#note392">392)</a> If the previous handler was registered by calling set_constraint_handler_s with a null
  pointer argument, a pointer to the implementation default handler is returned (not NULL).
 </small>
 
 <h5><a name="K.3.6.1.2" href="#K.3.6.1.2">K.3.6.1.2 The abort_handler_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -29582,7 +29582,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               void * restrict ptr,
               errno_t error);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  A pointer to the abort_handler_s function shall be a suitable argument to the
  set_constraint_handler_s function.
@@ -29590,7 +29590,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  The abort_handler_s function writes a message on the standard error stream in an
  implementation-defined format. The message shall include the string pointed to by msg.
  The abort_handler_s function then calls the abort function.<sup><a href="#note393"><b>393)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The abort_handler_s function does not return to its caller.
  
@@ -29599,12 +29599,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 620 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note393" href="#note393">393)</a> Many implementations invoke a debugger when the abort function is called.
 </small>
 
 <h5><a name="K.3.6.1.3" href="#K.3.6.1.3">K.3.6.1.3 The ignore_handler_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -29614,17 +29614,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
               void * restrict ptr,
               errno_t error);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  A pointer to the ignore_handler_s function shall be a suitable argument to the
  set_constraint_handler_s function.
 <p><!--para 3 -->
  The ignore_handler_s function simply returns to its caller.<sup><a href="#note394"><b>394)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 4 -->
  The ignore_handler_s function returns no value.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note394" href="#note394">394)</a> If the runtime-constraint handler is set to the ignore_handler_s function, any library function in
  which a runtime-constraint violation occurs will return to its caller. The caller can determine whether
  a runtime-constraint violation occurred based on the library function's specification (usually, the
@@ -29634,7 +29634,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="K.3.6.2" href="#K.3.6.2">K.3.6.2 Communication with the environment</a></h5>
 
 <h5><a name="K.3.6.2.1" href="#K.3.6.2.1">K.3.6.2.1 The getenv_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -29650,7 +29650,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 3 -->
  If there is a runtime-constraint violation, the integer pointed to by len is set to 0 (if len
  is not null), and the environment list is not searched.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The getenv_s function searches an environment list, provided by the host environment,
  for a string that matches the string pointed to by name.
@@ -29669,7 +29669,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 7 -->
  The set of environment names and the method for altering the environment list are
  implementation-defined.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 8 -->
  The getenv_s function returns zero if the specified name is found and the associated
  string was successfully stored in value. Otherwise, a nonzero value is returned.
@@ -29706,7 +29706,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  comparison function, and also between any call to the comparison function and any
  movement of the objects passed as arguments to that call.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note395" href="#note395">395)</a> That is, if the value passed is p, then the following expressions are always valid and nonzero:
 
 <pre>
@@ -29717,7 +29717,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="K.3.6.3.1" href="#K.3.6.3.1">K.3.6.3.1 The bsearch_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #define __STDC_WANT_LIB_EXT1__ 1
@@ -29735,7 +29735,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 3 -->
  If there is a runtime-constraint violation, the bsearch_s function does not search the
  array.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The bsearch_s function searches an array of nmemb objects, the initial element of
  which is pointed to by base, for an element that matches the object pointed to by key.
@@ -29755,13 +29755,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
  
 <!--page 623 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  The bsearch_s function returns a pointer to a matching element of the array, or a null
  pointer if no match is found or there is a runtime-constraint violation. If two elements
  compare as equal, which element is matched is unspecified.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note396" href="#note396">396)</a> In practice, this means that the entire array has been sorted according to the comparison function.
 </small>
 <p><small><a name="note397" href="#note397">397)</a> The context argument is for the use of the comparison function in performing its duties. For
@@ -29769,7 +29769,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="K.3.6.3.2" href="#K.3.6.3.2">K.3.6.3.2 The qsort_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -29785,7 +29785,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  zero, then neither base nor compar shall be a null pointer.
 <p><!--para 3 -->
  If there is a runtime-constraint violation, the qsort_s function does not sort the array.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The qsort_s function sorts an array of nmemb objects, the initial element of which is
  pointed to by base. The size of each object is specified by size.
@@ -29800,7 +29800,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 6 -->
  If two elements compare as equal, their relative order in the resulting sorted array is
  unspecified.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 7 -->
  The qsort_s function returns zero if there was no runtime-constraint violation.
  Otherwise, a nonzero value is returned.
@@ -29810,7 +29810,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 624 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note398" href="#note398">398)</a> The context argument is for the use of the comparison function in performing its duties. For
  example, it might specify a collating sequence used by the comparison function.
 </small>
@@ -29826,13 +29826,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  encodings have state dependency, and zero otherwise.<sup><a href="#note399"><b>399)</b></a></sup> Changing the LC_CTYPE
  category causes the conversion state of these functions to be indeterminate.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note399" href="#note399">399)</a> If the locale employs special bytes to change the shift state, these bytes do not produce separate wide
  character codes, but are grouped with an adjacent multibyte character.
 </small>
 
 <h5><a name="K.3.6.4.1" href="#K.3.6.4.1">K.3.6.4.1 The wctomb_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -29853,7 +29853,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, wctomb_s does not modify the int pointed to
  by status, and if s is not a null pointer, no more than smax elements in the array
  pointed to by s will be accessed.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 5 -->
  The wctomb_s function determines n and stores the multibyte character representation
  of wc in the array whose first element is pointed to by s (if s is not a null pointer). The
@@ -29878,7 +29878,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 9 -->
  In no case will the int pointed to by status be set to a value greater than the
  MB_CUR_MAX macro.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 10 -->
  The wctomb_s function returns zero if successful, and a nonzero value if there was a
  runtime-constraint violation or wc did not correspond to a valid multibyte character.
@@ -29889,7 +29889,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  the current locale.
 
 <h5><a name="K.3.6.5.1" href="#K.3.6.5.1">K.3.6.5.1 The mbstowcs_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #include <a href="#7.22">&lt;stdlib.h&gt;</a>
@@ -29909,7 +29909,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  retval is not a null pointer, then mbstowcs_s sets *retval to (size_t)(-1). If
  dst is not a null pointer and dstmax is greater than zero and less than RSIZE_MAX,
  then mbstowcs_s sets dst[0] to the null wide character.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The mbstowcs_s function converts a sequence of multibyte characters that begins in
  the initial shift state from the array pointed to by src into a sequence of corresponding
@@ -29935,12 +29935,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 7 -->
  If copying takes place between objects that overlap, the objects take on unspecified
  values.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 8 -->
  The mbstowcs_s function returns zero if no runtime-constraint violation and no
  encoding error occurred. Otherwise, a nonzero value is returned.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note400" href="#note400">400)</a> Thus, the value of len is ignored if dst is a null pointer.
 </small>
 <p><small><a name="note401" href="#note401">401)</a> This allows an implementation to attempt converting the multibyte string before discovering a
@@ -29948,7 +29948,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="K.3.6.5.2" href="#K.3.6.5.2">K.3.6.5.2 The wcstombs_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #include <a href="#7.22">&lt;stdlib.h&gt;</a>
@@ -29974,7 +29974,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  retval is not a null pointer, then wcstombs_s sets *retval to (size_t)(-1). If
  dst is not a null pointer and dstmax is greater than zero and less than RSIZE_MAX,
  then wcstombs_s sets dst[0] to the null character.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The wcstombs_s function converts a sequence of wide characters from the array
  pointed to by src into a sequence of corresponding multibyte characters that begins in
@@ -30010,12 +30010,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
  
 <!--page 628 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 8 -->
  The wcstombs_s function returns zero if no runtime-constraint violation and no
  encoding error occurred. Otherwise, a nonzero value is returned.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note402" href="#note402">402)</a> If conversion stops because a terminating null wide character has been reached, the bytes stored
  include those necessary to reach the initial shift state immediately before the null byte. However, if
  the conversion stops before a terminating null wide character has been reached, the result will be null
@@ -30042,7 +30042,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="K.3.7.1" href="#K.3.7.1">K.3.7.1 Copying functions</a></h5>
 
 <h5><a name="K.3.7.1.1" href="#K.3.7.1.1">K.3.7.1.1 The memcpy_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #define __STDC_WANT_LIB_EXT1__ 1
@@ -30059,18 +30059,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, the memcpy_s function stores zeros in the first
  s1max characters of the object pointed to by s1 if s1 is not a null pointer and s1max is
  not greater than RSIZE_MAX.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The memcpy_s function copies n characters from the object pointed to by s2 into the
  object pointed to by s1.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The memcpy_s function returns zero if there was no runtime-constraint violation.
  Otherwise, a nonzero value is returned.
 <!--page 629 -->
 
 <h5><a name="K.3.7.1.2" href="#K.3.7.1.2">K.3.7.1.2 The memmove_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -30086,20 +30086,20 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, the memmove_s function stores zeros in the
  first s1max characters of the object pointed to by s1 if s1 is not a null pointer and
  s1max is not greater than RSIZE_MAX.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The memmove_s function copies n characters from the object pointed to by s2 into the
  object pointed to by s1. This copying takes place as if the n characters from the object
  pointed to by s2 are first copied into a temporary array of n characters that does not
  overlap the objects pointed to by s1 or s2, and then the n characters from the temporary
  array are copied into the object pointed to by s1.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The memmove_s function returns zero if there was no runtime-constraint violation.
  Otherwise, a nonzero value is returned.
 
 <h5><a name="K.3.7.1.3" href="#K.3.7.1.3">K.3.7.1.3 The strcpy_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -30118,7 +30118,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  greater than zero and not greater than RSIZE_MAX, then strcpy_s sets s1[0] to the
  null character.
 <!--page 630 -->
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The strcpy_s function copies the string pointed to by s2 (including the terminating
  null character) into the array pointed to by s1.
@@ -30126,12 +30126,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  All elements following the terminating null character (if any) written by strcpy_s in
  the array of s1max characters pointed to by s1 take unspecified values when
  strcpy_s returns.<sup><a href="#note404"><b>404)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  The strcpy_s function returns zero<sup><a href="#note405"><b>405)</b></a></sup> if there was no runtime-constraint violation.
  Otherwise, a nonzero value is returned.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note404" href="#note404">404)</a> This allows an implementation to copy characters from s2 to s1 while simultaneously checking if
  any of those characters are null. Such an approach might write a character to every element of s1
  before discovering that the first element should be set to the null character.
@@ -30141,7 +30141,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="K.3.7.1.4" href="#K.3.7.1.4">K.3.7.1.4 The strncpy_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -30161,7 +30161,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, then if s1 is not a null pointer and s1max is
  greater than zero and not greater than RSIZE_MAX, then strncpy_s sets s1[0] to the
  null character.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The strncpy_s function copies not more than n successive characters (characters that
  follow a null character are not copied) from the array pointed to by s2 to the array
@@ -30174,7 +30174,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  All elements following the terminating null character (if any) written by strncpy_s in
  the array of s1max characters pointed to by s1 take unspecified values when
  strncpy_s returns.<sup><a href="#note406"><b>406)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  The strncpy_s function returns zero<sup><a href="#note407"><b>407)</b></a></sup> if there was no runtime-constraint violation.
  Otherwise, a nonzero value is returned.
@@ -30198,7 +30198,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  The third call will assign to r3 the value zero and to dst3 the sequence good\0.
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note406" href="#note406">406)</a> This allows an implementation to copy characters from s2 to s1 while simultaneously checking if
  any of those characters are null. Such an approach might write a character to every element of s1
  before discovering that the first element should be set to the null character.
@@ -30210,7 +30210,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="K.3.7.2" href="#K.3.7.2">K.3.7.2 Concatenation functions</a></h5>
 
 <h5><a name="K.3.7.2.1" href="#K.3.7.2.1">K.3.7.2.1 The strcat_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -30236,7 +30236,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, then if s1 is not a null pointer and s1max is
  greater than zero and not greater than RSIZE_MAX, then strcat_s sets s1[0] to the
  null character.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 5 -->
  The strcat_s function appends a copy of the string pointed to by s2 (including the
  terminating null character) to the end of the string pointed to by s1. The initial character
@@ -30245,12 +30245,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  All elements following the terminating null character (if any) written by strcat_s in
  the array of s1max characters pointed to by s1 take unspecified values when
  strcat_s returns.<sup><a href="#note409"><b>409)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 7 -->
  The strcat_s function returns zero<sup><a href="#note410"><b>410)</b></a></sup> if there was no runtime-constraint violation.
  Otherwise, a nonzero value is returned.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note408" href="#note408">408)</a> Zero means that s1 was not null terminated upon entry to strcat_s.
 </small>
 <p><small><a name="note409" href="#note409">409)</a> This allows an implementation to append characters from s2 to s1 while simultaneously checking if
@@ -30262,7 +30262,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="K.3.7.2.2" href="#K.3.7.2.2">K.3.7.2.2 The strncat_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -30288,7 +30288,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, then if s1 is not a null pointer and s1max is
  greater than zero and not greater than RSIZE_MAX, then strncat_s sets s1[0] to the
  null character.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 5 -->
  The strncat_s function appends not more than n successive characters (characters
  that follow a null character are not copied) from the array pointed to by s2 to the end of
@@ -30299,7 +30299,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  All elements following the terminating null character (if any) written by strncat_s in
  the array of s1max characters pointed to by s1 take unspecified values when
  strncat_s returns.<sup><a href="#note412"><b>412)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 7 -->
  The strncat_s function returns zero<sup><a href="#note413"><b>413)</b></a></sup> if there was no runtime-constraint violation.
  Otherwise, a nonzero value is returned.
@@ -30331,7 +30331,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  After the fourth call r4 will have the value zero and s4 will contain the sequence abcdef\0.
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note411" href="#note411">411)</a> Zero means that s1 was not null terminated upon entry to strncat_s.
 </small>
 <p><small><a name="note412" href="#note412">412)</a> This allows an implementation to append characters from s2 to s1 while simultaneously checking if
@@ -30345,7 +30345,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="K.3.7.3" href="#K.3.7.3">K.3.7.3 Search functions</a></h5>
 
 <h5><a name="K.3.7.3.1" href="#K.3.7.3.1">K.3.7.3.1 The strtok_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -30365,7 +30365,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 3 -->
  If there is a runtime-constraint violation, the strtok_s function does not indirect
  through the s1 or s2 pointers, and does not store a value in the object pointed to by ptr.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  A sequence of calls to the strtok_s function breaks the string pointed to by s1 into a
  sequence of tokens, each of which is delimited by a character from the string pointed to
@@ -30398,7 +30398,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  to by ptr so that subsequent calls, with a null pointer for s1 and the unmodified pointer
  value for ptr, shall start searching just past the element overwritten by a null character
  (if any).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 9 -->
  The strtok_s function returns a pointer to the first character of a token, or a null
  pointer if there is no token or there is a runtime-constraint violation.
@@ -30423,7 +30423,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="K.3.7.4" href="#K.3.7.4">K.3.7.4 Miscellaneous functions</a></h5>
 
 <h5><a name="K.3.7.4.1" href="#K.3.7.4.1">K.3.7.4.1 The memset_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -30439,7 +30439,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  greater than RSIZE_MAX, the memset_s function stores the value of c (converted to an
  unsigned char) into each of the first smax characters of the object pointed to by s.
 <!--page 636 -->
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The memset_s function copies the value of c (converted to an unsigned char) into
  each of the first n characters of the object pointed to by s. Unlike memset, any call to
@@ -30447,13 +30447,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  machine as described in (<a href="#5.1.2.3">5.1.2.3</a>). That is, any call to the memset_s function shall
  assume that the memory indicated by s and n may be accessible in the future and thus
  must contain the values indicated by c.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The memset_s function returns zero if there was no runtime-constraint violation.
  Otherwise, a nonzero value is returned.
 
 <h5><a name="K.3.7.4.2" href="#K.3.7.4.2">K.3.7.4.2 The strerror_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #define __STDC_WANT_LIB_EXT1__ 1
@@ -30468,7 +30468,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 3 -->
  If there is a runtime-constraint violation, then the array (if any) pointed to by s is not
  modified.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The strerror_s function maps the number in errnum to a locale-specific message
  string. Typically, the values for errnum come from errno, but strerror_s shall
@@ -30481,7 +30481,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  from the string to the array pointed to by s and then s[maxsize-1] is set to the null
  character. Then, if maxsize is greater than 3, then s[maxsize-2],
  s[maxsize-3], and s[maxsize-4] are set to the character period (.).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 7 -->
  The strerror_s function returns zero if the length of the desired string was less than
  maxsize and there was no runtime-constraint violation. Otherwise, the strerror_s
@@ -30489,34 +30489,34 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 637 -->
 
 <h5><a name="K.3.7.4.3" href="#K.3.7.4.3">K.3.7.4.3 The strerrorlen_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
          #include <a href="#7.23">&lt;string.h&gt;</a>
          size_t strerrorlen_s(errno_t errnum);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strerrorlen_s function calculates the length of the (untruncated) locale-specific
  message string that the strerror_s function maps to errnum.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  The strerrorlen_s function returns the number of characters (not including the null
  character) in the full message string.
 
 <h5><a name="K.3.7.4.4" href="#K.3.7.4.4">K.3.7.4.4 The strnlen_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
          #include <a href="#7.23">&lt;string.h&gt;</a>
          size_t strnlen_s(const char *s, size_t maxsize);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The strnlen_s function computes the length of the string pointed to by s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If s is a null pointer,<sup><a href="#note414"><b>414)</b></a></sup> then the strnlen_s function returns zero.
 <p><!--para 4 -->
@@ -30530,7 +30530,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 638 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note414" href="#note414">414)</a> Note that the strnlen_s function has no runtime-constraints. This lack of runtime-constraints
  along with the values returned for a null pointer or an unterminated string argument make
  strnlen_s useful in algorithms that gracefully handle such exceptional data.
@@ -30555,7 +30555,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  A broken-down time is normalized if the values of the members of the tm structure are in
  their normal rages.<sup><a href="#note415"><b>415)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note415" href="#note415">415)</a> The normal ranges are defined in <a href="#7.26.1">7.26.1</a>.
 </small>
 
@@ -30565,7 +30565,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  pointer to a static object, and other library functions are permitted to call them.
 
 <h5><a name="K.3.8.2.1" href="#K.3.8.2.1">K.3.8.2.1 The asctime_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -30584,7 +30584,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, there is no attempt to convert the time, and
  s[0] is set to a null character if s is not a null pointer and maxsize is not zero and is
  not greater than RSIZE_MAX.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The asctime_s function converts the normalized broken-down time in the structure
  pointed to by timeptr into a 26 character (including the null character) string in the
@@ -30621,18 +30621,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <li>  The character new line.
 <li>  The null character.
 </ol>
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
  The strftime function allows more flexible formatting and supports locale-specific
  behavior. If you do not require the exact form of the result string produced by the
  asctime_s function, consider using the strftime function instead.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The asctime_s function returns zero if the time was successfully converted and stored
  into the array pointed to by s. Otherwise, it returns a nonzero value.
 <!--page 640 -->
 
 <h5><a name="K.3.8.2.2" href="#K.3.8.2.2">K.3.8.2.2 The ctime_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #define __STDC_WANT_LIB_EXT1__ 1
@@ -30647,24 +30647,24 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 3 -->
  If there is a runtime-constraint violation, s[0] is set to a null character if s is not a null
  pointer and maxsize is not equal zero and is not greater than RSIZE_MAX.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The ctime_s function converts the calendar time pointed to by timer to local time in
  the form of a string. It is equivalent to
 <pre>
         asctime_s(s, maxsize, localtime_s(timer))
 </pre>
-<h6>Recommended practice</h6>
+<p><b>Recommended practice</b>
  The strftime function allows more flexible formatting and supports locale-specific
  behavior. If you do not require the exact form of the result string produced by the
  ctime_s function, consider using the strftime function instead.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The ctime_s function returns zero if the time was successfully converted and stored
  into the array pointed to by s. Otherwise, it returns a nonzero value.
 
 <h5><a name="K.3.8.2.3" href="#K.3.8.2.3">K.3.8.2.3 The gmtime_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #define __STDC_WANT_LIB_EXT1__ 1
@@ -30677,19 +30677,19 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  Neither timer nor result shall be a null pointer.
 <p><!--para 3 -->
  If there is a runtime-constraint violation, there is no attempt to convert the time.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The gmtime_s function converts the calendar time pointed to by timer into a broken-
  down time, expressed as UTC. The broken-down time is stored in the structure pointed
 <!--page 641 -->
  to by result.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The gmtime_s function returns result, or a null pointer if the specified time cannot
  be converted to UTC or there is a runtime-constraint violation.
 
 <h5><a name="K.3.8.2.4" href="#K.3.8.2.4">K.3.8.2.4 The localtime_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
           #define __STDC_WANT_LIB_EXT1__ 1
@@ -30702,12 +30702,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  Neither timer nor result shall be a null pointer.
 <p><!--para 3 -->
  If there is a runtime-constraint violation, there is no attempt to convert the time.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The localtime_s function converts the calendar time pointed to by timer into a
  broken-down time, expressed as local time. The broken-down time is stored in the
  structure pointed to by result.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The localtime_s function returns result, or a null pointer if the specified time
  cannot be converted to local time or there is a runtime-constraint violation.
@@ -30734,7 +30734,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="K.3.9.1" href="#K.3.9.1">K.3.9.1 Formatted wide character input/output functions</a></h5>
 
 <h5><a name="K.3.9.1.1" href="#K.3.9.1.1">K.3.9.1.1 The fwprintf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -30752,23 +30752,23 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, the fwprintf_s function does not attempt to
  produce further output, and it is unspecified to what extent fwprintf_s produced
  output before discovering the runtime-constraint violation.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The fwprintf_s function is equivalent to the fwprintf function except for the
  explicit runtime-constraints listed above.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The fwprintf_s function returns the number of wide characters transmitted, or a
  negative value if an output error, encoding error, or runtime-constraint violation occurred.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note416" href="#note416">416)</a> It is not a runtime-constraint violation for the wide characters %n to appear in sequence in the wide
  string pointed at by format when those wide characters are not a interpreted as a %n specifier. For
  example, if the entire format string was L"%%n".
 </small>
 
 <h5><a name="K.3.9.1.2" href="#K.3.9.1.2">K.3.9.1.2 The fwscanf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -30788,7 +30788,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, the fwscanf_s function does not attempt to
  perform further input, and it is unspecified to what extent fwscanf_s performed input
  before discovering the runtime-constraint violation.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The fwscanf_s function is equivalent to fwscanf except that the c, s, and [
  conversion specifiers apply to a pair of arguments (unless assignment suppression is
@@ -30800,14 +30800,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 5 -->
  A matching failure occurs if the number of elements in a receiving object is insufficient to
  hold the converted input (including any trailing null character).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  The fwscanf_s function returns the value of the macro EOF if an input failure occurs
  before any conversion or if there is a runtime-constraint violation. Otherwise, the
  fwscanf_s function returns the number of input items assigned, which can be fewer
  than provided for, or even zero, in the event of an early matching failure.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note417" href="#note417">417)</a> If the format is known at translation time, an implementation may issue a diagnostic for any argument
  used to store the result from a c, s, or [ conversion specifier if that argument is not followed by an
  argument of a type compatible with rsize_t. A limited amount of checking may be done if even if
@@ -30821,7 +30821,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="K.3.9.1.3" href="#K.3.9.1.3">K.3.9.1.3 The snwprintf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -30843,14 +30843,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, then if s is not a null pointer and n is greater
  than zero and less than RSIZE_MAX, then the snwprintf_s function sets s[0] to the
  null wide character.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The snwprintf_s function is equivalent to the swprintf function except for the
  explicit runtime-constraints listed above.
 <p><!--para 5 -->
  The snwprintf_s function, unlike swprintf_s, will truncate the result to fit within
  the array pointed to by s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  The snwprintf_s function returns the number of wide characters that would have
  been written had n been sufficiently large, not counting the terminating wide null
@@ -30858,14 +30858,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  terminated output has been completely written if and only if the returned value is
  nonnegative and less than n.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note418" href="#note418">418)</a> It is not a runtime-constraint violation for the wide characters %n to appear in sequence in the wide
  string pointed at by format when those wide characters are not a interpreted as a %n specifier. For
  example, if the entire format string was L"%%n".
 </small>
 
 <h5><a name="K.3.9.1.4" href="#K.3.9.1.4">K.3.9.1.4 The swprintf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -30888,14 +30888,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, then if s is not a null pointer and n is greater
  than zero and less than RSIZE_MAX, then the swprintf_s function sets s[0] to the
  null wide character.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The swprintf_s function is equivalent to the swprintf function except for the
  explicit runtime-constraints listed above.
 <p><!--para 5 -->
  The swprintf_s function, unlike snwprintf_s, treats a result too big for the array
  pointed to by s as a runtime-constraint violation.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  If no runtime-constraint violation occurred, the swprintf_s function returns the
  number of wide characters written in the array, not counting the terminating null wide
@@ -30903,14 +30903,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  be written, swprintf_s returns a negative value. If any other runtime-constraint
  violation occurred, swprintf_s returns zero.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note419" href="#note419">419)</a> It is not a runtime-constraint violation for the wide characters %n to appear in sequence in the wide
  string pointed at by format when those wide characters are not a interpreted as a %n specifier. For
  example, if the entire format string was L"%%n".
 </small>
 
 <h5><a name="K.3.9.1.5" href="#K.3.9.1.5">K.3.9.1.5 The swscanf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -30926,13 +30926,13 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, the swscanf_s function does not attempt to
  perform further input, and it is unspecified to what extent swscanf_s performed input
  before discovering the runtime-constraint violation.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The swscanf_s function is equivalent to fwscanf_s, except that the argument s
  specifies a wide string from which the input is to be obtained, rather than from a stream.
  Reaching the end of the wide string is equivalent to encountering end-of-file for the
  fwscanf_s function.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The swscanf_s function returns the value of the macro EOF if an input failure occurs
  before any conversion or if there is a runtime-constraint violation. Otherwise, the
@@ -30941,7 +30941,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 646 -->
 
 <h5><a name="K.3.9.1.6" href="#K.3.9.1.6">K.3.9.1.6 The vfwprintf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -30962,23 +30962,23 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, the vfwprintf_s function does not attempt
  to produce further output, and it is unspecified to what extent vfwprintf_s produced
  output before discovering the runtime-constraint violation.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The vfwprintf_s function is equivalent to the vfwprintf function except for the
  explicit runtime-constraints listed above.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The vfwprintf_s function returns the number of wide characters transmitted, or a
  negative value if an output error, encoding error, or runtime-constraint violation occurred.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note420" href="#note420">420)</a> It is not a runtime-constraint violation for the wide characters %n to appear in sequence in the wide
  string pointed at by format when those wide characters are not a interpreted as a %n specifier. For
  example, if the entire format string was L"%%n".
 </small>
 
 <h5><a name="K.3.9.1.7" href="#K.3.9.1.7">K.3.9.1.7 The vfwscanf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -31000,26 +31000,26 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, the vfwscanf_s function does not attempt to
  perform further input, and it is unspecified to what extent vfwscanf_s performed input
  before discovering the runtime-constraint violation.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The vfwscanf_s function is equivalent to fwscanf_s, with the variable argument
  list replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vfwscanf_s function does not invoke the
  va_end macro.<sup><a href="#note421"><b>421)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The vfwscanf_s function returns the value of the macro EOF if an input failure occurs
  before any conversion or if there is a runtime-constraint violation. Otherwise, the
  vfwscanf_s function returns the number of input items assigned, which can be fewer
  than provided for, or even zero, in the event of an early matching failure.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note421" href="#note421">421)</a> As the functions vfwscanf_s, vwscanf_s, and vswscanf_s invoke the va_arg macro, the
  value of arg after the return is indeterminate.
 </small>
 
 <h5><a name="K.3.9.1.8" href="#K.3.9.1.8">K.3.9.1.8 The vsnwprintf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -31043,14 +31043,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, then if s is not a null pointer and n is greater
  than zero and less than RSIZE_MAX, then the vsnwprintf_s function sets s[0] to
  the null wide character.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The vsnwprintf_s function is equivalent to the vswprintf function except for the
  explicit runtime-constraints listed above.
 <p><!--para 5 -->
  The vsnwprintf_s function, unlike vswprintf_s, will truncate the result to fit
  within the array pointed to by s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  The vsnwprintf_s function returns the number of wide characters that would have
  been written had n been sufficiently large, not counting the terminating null character, or
@@ -31058,14 +31058,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  output has been completely written if and only if the returned value is nonnegative and
  less than n.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note422" href="#note422">422)</a> It is not a runtime-constraint violation for the wide characters %n to appear in sequence in the wide
  string pointed at by format when those wide characters are not a interpreted as a %n specifier. For
  example, if the entire format string was L"%%n".
 </small>
 
 <h5><a name="K.3.9.1.9" href="#K.3.9.1.9">K.3.9.1.9 The vswprintf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -31090,14 +31090,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  null wide character.
  
 <!--page 649 -->
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The vswprintf_s function is equivalent to the vswprintf function except for the
  explicit runtime-constraints listed above.
 <p><!--para 5 -->
  The vswprintf_s function, unlike vsnwprintf_s, treats a result too big for the
  array pointed to by s as a runtime-constraint violation.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  If no runtime-constraint violation occurred, the vswprintf_s function returns the
  number of wide characters written in the array, not counting the terminating null wide
@@ -31105,14 +31105,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  be written, vswprintf_s returns a negative value. If any other runtime-constraint
  violation occurred, vswprintf_s returns zero.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note423" href="#note423">423)</a> It is not a runtime-constraint violation for the wide characters %n to appear in sequence in the wide
  string pointed at by format when those wide characters are not a interpreted as a %n specifier. For
  example, if the entire format string was L"%%n".
 </small>
 
 <h5><a name="K.3.9.1.10" href="#K.3.9.1.10">K.3.9.1.10 The vswscanf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -31130,7 +31130,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, the vswscanf_s function does not attempt to
  perform further input, and it is unspecified to what extent vswscanf_s performed input
  before discovering the runtime-constraint violation.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The vswscanf_s function is equivalent to swscanf_s, with the variable argument
  list replaced by arg, which shall have been initialized by the va_start macro (and
@@ -31141,20 +31141,20 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
  
 <!--page 650 -->
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The vswscanf_s function returns the value of the macro EOF if an input failure occurs
  before any conversion or if there is a runtime-constraint violation. Otherwise, the
  vswscanf_s function returns the number of input items assigned, which can be fewer
  than provided for, or even zero, in the event of an early matching failure.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note424" href="#note424">424)</a> As the functions vfwscanf_s, vwscanf_s, and vswscanf_s invoke the va_arg macro, the
  value of arg after the return is indeterminate.
 </small>
 
 <h5><a name="K.3.9.1.11" href="#K.3.9.1.11">K.3.9.1.11 The vwprintf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -31172,11 +31172,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, the vwprintf_s function does not attempt to
  produce further output, and it is unspecified to what extent vwprintf_s produced
  output before discovering the runtime-constraint violation.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The vwprintf_s function is equivalent to the vwprintf function except for the
  explicit runtime-constraints listed above.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The vwprintf_s function returns the number of wide characters transmitted, or a
  negative value if an output error, encoding error, or runtime-constraint violation occurred.
@@ -31186,14 +31186,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 651 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note425" href="#note425">425)</a> It is not a runtime-constraint violation for the wide characters %n to appear in sequence in the wide
  string pointed at by format when those wide characters are not a interpreted as a %n specifier. For
  example, if the entire format string was L"%%n".
 </small>
 
 <h5><a name="K.3.9.1.12" href="#K.3.9.1.12">K.3.9.1.12 The vwscanf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -31210,26 +31210,26 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, the vwscanf_s function does not attempt to
  perform further input, and it is unspecified to what extent vwscanf_s performed input
  before discovering the runtime-constraint violation.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The vwscanf_s function is equivalent to wscanf_s, with the variable argument list
  replaced by arg, which shall have been initialized by the va_start macro (and
  possibly subsequent va_arg calls). The vwscanf_s function does not invoke the
  va_end macro.<sup><a href="#note426"><b>426)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The vwscanf_s function returns the value of the macro EOF if an input failure occurs
  before any conversion or if there is a runtime-constraint violation. Otherwise, the
  vwscanf_s function returns the number of input items assigned, which can be fewer
  than provided for, or even zero, in the event of an early matching failure.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note426" href="#note426">426)</a> As the functions vfwscanf_s, vwscanf_s, and vswscanf_s invoke the va_arg macro, the
  value of arg after the return is indeterminate.
 </small>
 
 <h5><a name="K.3.9.1.13" href="#K.3.9.1.13">K.3.9.1.13 The wprintf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -31247,23 +31247,23 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, the wprintf_s function does not attempt to
  produce further output, and it is unspecified to what extent wprintf_s produced output
  before discovering the runtime-constraint violation.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The wprintf_s function is equivalent to the wprintf function except for the explicit
  runtime-constraints listed above.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The wprintf_s function returns the number of wide characters transmitted, or a
  negative value if an output error, encoding error, or runtime-constraint violation occurred.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note427" href="#note427">427)</a> It is not a runtime-constraint violation for the wide characters %n to appear in sequence in the wide
  string pointed at by format when those wide characters are not a interpreted as a %n specifier. For
  example, if the entire format string was L"%%n".
 </small>
 
 <h5><a name="K.3.9.1.14" href="#K.3.9.1.14">K.3.9.1.14 The wscanf_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #define __STDC_WANT_LIB_EXT1__ 1
@@ -31278,11 +31278,11 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, the wscanf_s function does not attempt to
  perform further input, and it is unspecified to what extent wscanf_s performed input
  before discovering the runtime-constraint violation.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The wscanf_s function is equivalent to fwscanf_s with the argument stdin
  interposed before the arguments to wscanf_s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 5 -->
  The wscanf_s function returns the value of the macro EOF if an input failure occurs
  before any conversion or if there is a runtime-constraint violation. Otherwise, the
@@ -31295,7 +31295,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="K.3.9.2.1" href="#K.3.9.2.1">K.3.9.2.1 Wide string copying functions</a></h5>
 
 <h5><a name="K.3.9.2.1.1" href="#K.3.9.2.1.1">K.3.9.2.1.1 The wcscpy_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -31313,7 +31313,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, then if s1 is not a null pointer and s1max is
  greater than zero and not greater than RSIZE_MAX, then wcscpy_s sets s1[0] to the
  null wide character.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  The wcscpy_s function copies the wide string pointed to by s2 (including the
  terminating null wide character) into the array pointed to by s1.
@@ -31321,7 +31321,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  All elements following the terminating null wide character (if any) written by
  wcscpy_s in the array of s1max wide characters pointed to by s1 take unspecified
  values when wcscpy_s returns.<sup><a href="#note428"><b>428)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 6 -->
  The wcscpy_s function returns zero<sup><a href="#note429"><b>429)</b></a></sup> if there was no runtime-constraint violation.
  Otherwise, a nonzero value is returned.
@@ -31331,7 +31331,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 654 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note428" href="#note428">428)</a> This allows an implementation to copy wide characters from s2 to s1 while simultaneously checking
  if any of those wide characters are null. Such an approach might write a wide character to every
  element of s1 before discovering that the first element should be set to the null wide character.
@@ -31341,7 +31341,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="K.3.9.2.1.2" href="#K.3.9.2.1.2">K.3.9.2.1.2 The wcsncpy_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 7 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -31361,7 +31361,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, then if s1 is not a null pointer and s1max is
  greater than zero and not greater than RSIZE_MAX, then wcsncpy_s sets s1[0] to the
  null wide character.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 10 -->
  The wcsncpy_s function copies not more than n successive wide characters (wide
  characters that follow a null wide character are not copied) from the array pointed to by
@@ -31371,7 +31371,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  All elements following the terminating null wide character (if any) written by
  wcsncpy_s in the array of s1max wide characters pointed to by s1 take unspecified
  values when wcsncpy_s returns.<sup><a href="#note430"><b>430)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 12 -->
  The wcsncpy_s function returns zero<sup><a href="#note431"><b>431)</b></a></sup> if there was no runtime-constraint violation.
  Otherwise, a nonzero value is returned.
@@ -31401,7 +31401,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  The third call will assign to r3 the value zero and to dst3 the sequence of wide characters good\0.
  
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note430" href="#note430">430)</a> This allows an implementation to copy wide characters from s2 to s1 while simultaneously checking
  if any of those wide characters are null. Such an approach might write a wide character to every
  element of s1 before discovering that the first element should be set to the null wide character.
@@ -31411,7 +31411,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="K.3.9.2.1.3" href="#K.3.9.2.1.3">K.3.9.2.1.3 The wmemcpy_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 14 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -31430,18 +31430,18 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, the wmemcpy_s function stores zeros in the
  first s1max wide characters of the object pointed to by s1 if s1 is not a null pointer and
  s1max is not greater than RSIZE_MAX.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 17 -->
  The wmemcpy_s function copies n successive wide characters from the object pointed
  to by s2 into the object pointed to by s1.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 18 -->
  The wmemcpy_s function returns zero if there was no runtime-constraint violation.
  Otherwise, a nonzero value is returned.
 <!--page 656 -->
 
 <h5><a name="K.3.9.2.1.4" href="#K.3.9.2.1.4">K.3.9.2.1.4 The wmemmove_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 19 -->
 <pre>
         #define __STDC_WANT_LIB_EXT1__ 1
@@ -31457,14 +31457,14 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, the wmemmove_s function stores zeros in the
  first s1max wide characters of the object pointed to by s1 if s1 is not a null pointer and
  s1max is not greater than RSIZE_MAX.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 22 -->
  The wmemmove_s function copies n successive wide characters from the object pointed
  to by s2 into the object pointed to by s1. This copying takes place as if the n wide
  characters from the object pointed to by s2 are first copied into a temporary array of n
  wide characters that does not overlap the objects pointed to by s1 or s2, and then the n
  wide characters from the temporary array are copied into the object pointed to by s1.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 23 -->
  The wmemmove_s function returns zero if there was no runtime-constraint violation.
  Otherwise, a nonzero value is returned.
@@ -31472,7 +31472,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="K.3.9.2.2" href="#K.3.9.2.2">K.3.9.2.2 Wide string concatenation functions</a></h5>
 
 <h5><a name="K.3.9.2.2.1" href="#K.3.9.2.2.1">K.3.9.2.2.1 The wcscat_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #define __STDC_WANT_LIB_EXT1__ 1
@@ -31494,7 +31494,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, then if s1 is not a null pointer and s1max is
  greater than zero and not greater than RSIZE_MAX, then wcscat_s sets s1[0] to the
  null wide character.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 5 -->
  The wcscat_s function appends a copy of the wide string pointed to by s2 (including
  the terminating null wide character) to the end of the wide string pointed to by s1. The
@@ -31503,12 +31503,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  All elements following the terminating null wide character (if any) written by
  wcscat_s in the array of s1max wide characters pointed to by s1 take unspecified
  values when wcscat_s returns.<sup><a href="#note433"><b>433)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 7 -->
  The wcscat_s function returns zero<sup><a href="#note434"><b>434)</b></a></sup> if there was no runtime-constraint violation.
  Otherwise, a nonzero value is returned.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note432" href="#note432">432)</a> Zero means that s1 was not null terminated upon entry to wcscat_s.
 </small>
 <p><small><a name="note433" href="#note433">433)</a> This allows an implementation to append wide characters from s2 to s1 while simultaneously
@@ -31520,7 +31520,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="K.3.9.2.2.2" href="#K.3.9.2.2.2">K.3.9.2.2.2 The wcsncat_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 8 -->
 <pre>
           #define __STDC_WANT_LIB_EXT1__ 1
@@ -31546,7 +31546,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  If there is a runtime-constraint violation, then if s1 is not a null pointer and s1max is
  greater than zero and not greater than RSIZE_MAX, then wcsncat_s sets s1[0] to the
  null wide character.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 12 -->
  The wcsncat_s function appends not more than n successive wide characters (wide
  characters that follow a null wide character are not copied) from the array pointed to by
@@ -31557,7 +31557,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  All elements following the terminating null wide character (if any) written by
  wcsncat_s in the array of s1max wide characters pointed to by s1 take unspecified
  values when wcsncat_s returns.<sup><a href="#note436"><b>436)</b></a></sup>
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 14 -->
  The wcsncat_s function returns zero<sup><a href="#note437"><b>437)</b></a></sup> if there was no runtime-constraint violation.
  Otherwise, a nonzero value is returned.
@@ -31590,7 +31590,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 659 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note435" href="#note435">435)</a> Zero means that s1 was not null terminated upon entry to wcsncat_s.
 </small>
 <p><small><a name="note436" href="#note436">436)</a> This allows an implementation to append wide characters from s2 to s1 while simultaneously
@@ -31604,7 +31604,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="K.3.9.2.3" href="#K.3.9.2.3">K.3.9.2.3 Wide string search functions</a></h5>
 
 <h5><a name="K.3.9.2.3.1" href="#K.3.9.2.3.1">K.3.9.2.3.1 The wcstok_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
          #define __STDC_WANT_LIB_EXT1__ 1
@@ -31624,7 +31624,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 3 -->
  If there is a runtime-constraint violation, the wcstok_s function does not indirect
  through the s1 or s2 pointers, and does not store a value in the object pointed to by ptr.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 4 -->
  A sequence of calls to the wcstok_s function breaks the wide string pointed to by s1
  into a sequence of tokens, each of which is delimited by a wide character from the wide
@@ -31658,7 +31658,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  to by ptr so that subsequent calls, with a null pointer for s1 and the unmodified pointer
  value for ptr, shall start searching just past the element overwritten by a null wide
  character (if any).
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 9 -->
  The wcstok_s function returns a pointer to the first wide character of a token, or a null
  pointer if there is no token or there is a runtime-constraint violation.
@@ -31683,17 +31683,17 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <h5><a name="K.3.9.2.4" href="#K.3.9.2.4">K.3.9.2.4 Miscellaneous functions</a></h5>
 
 <h5><a name="K.3.9.2.4.1" href="#K.3.9.2.4.1">K.3.9.2.4.1 The wcsnlen_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 1 -->
 <pre>
         #define __STDC_WANT_LIB_EXT1__ 1
         #include <a href="#7.28">&lt;wchar.h&gt;</a>
         size_t wcsnlen_s(const wchar_t *s, size_t maxsize);
 </pre>
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 2 -->
  The wcsnlen_s function computes the length of the wide string pointed to by s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 3 -->
  If s is a null pointer,<sup><a href="#note438"><b>438)</b></a></sup> then the wcsnlen_s function returns zero.
 <p><!--para 4 -->
@@ -31703,7 +31703,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <!--page 661 -->
  maxsize wide characters of s shall be accessed by wcsnlen_s.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note438" href="#note438">438)</a> Note that the wcsnlen_s function has no runtime-constraints. This lack of runtime-constraints
  along with the values returned for a null pointer or an unterminated wide string argument make
  wcsnlen_s useful in algorithms that gracefully handle such exceptional data.
@@ -31717,7 +31717,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  conversion state) to be a null pointer.
 
 <h5><a name="K.3.9.3.1.1" href="#K.3.9.3.1.1">K.3.9.3.1.1 The wcrtomb_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 2 -->
 <pre>
          #include <a href="#7.28">&lt;wchar.h&gt;</a>
@@ -31736,7 +31736,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  not a null pointer and smax is greater than zero and not greater than RSIZE_MAX, then
  wcrtomb_s sets s[0] to the null character. If retval is not a null pointer, then
  wcrtomb_s sets *retval to (size_t)(-1).
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 5 -->
  If s is a null pointer, the wcrtomb_s function is equivalent to the call
 <pre>
@@ -31760,7 +31760,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  conversion state is unspecified. Otherwise, the wcrtomb_s function stores into
  *retval the number of bytes (including any shift sequences) stored in the array pointed
  to by s.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 8 -->
  The wcrtomb_s function returns zero if no runtime-constraint violation and no
  encoding error occurred. Otherwise, a nonzero value is returned.
@@ -31771,7 +31771,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  permit the ps parameter (the pointer to the conversion state) to be a null pointer.
 
 <h5><a name="K.3.9.3.2.1" href="#K.3.9.3.2.1">K.3.9.3.2.1 The mbsrtowcs_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 2 -->
 <pre>
         #include <a href="#7.28">&lt;wchar.h&gt;</a>
@@ -31793,7 +31793,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  retval is not a null pointer, then mbsrtowcs_s sets *retval to (size_t)(-1).
  If dst is not a null pointer and dstmax is greater than zero and less than RSIZE_MAX,
  then mbsrtowcs_s sets dst[0] to the null wide character.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 5 -->
  The mbsrtowcs_s function converts a sequence of multibyte characters that begins in
  the conversion state described by the object pointed to by ps, from the array indirectly
@@ -31827,12 +31827,12 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 9 -->
  If copying takes place between objects that overlap, the objects take on unspecified
  values.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 10 -->
  The mbsrtowcs_s function returns zero if no runtime-constraint violation and no
  encoding error occurred. Otherwise, a nonzero value is returned.
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note439" href="#note439">439)</a> Thus, the value of len is ignored if dst is a null pointer.
 </small>
 <p><small><a name="note440" href="#note440">440)</a> This allows an implementation to attempt converting the multibyte string before discovering a
@@ -31840,7 +31840,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 </small>
 
 <h5><a name="K.3.9.3.2.2" href="#K.3.9.3.2.2">K.3.9.3.2.2 The wcsrtombs_s function</a></h5>
-<h6>Synopsis</h6>
+<p><b>Synopsis</b>
 <p><!--para 11 -->
 <pre>
           #include <a href="#7.28">&lt;wchar.h&gt;</a>
@@ -31867,7 +31867,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  retval is not a null pointer, then wcsrtombs_s sets *retval to (size_t)(-1).
  If dst is not a null pointer and dstmax is greater than zero and less than RSIZE_MAX,
  then wcsrtombs_s sets dst[0] to the null character.
-<h6>Description</h6>
+<p><b>Description</b>
 <p><!--para 14 -->
  The wcsrtombs_s function converts a sequence of wide characters from the array
  indirectly pointed to by src into a sequence of corresponding multibyte characters that
@@ -31910,7 +31910,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
 <p><!--para 18 -->
  If copying takes place between objects that overlap, the objects take on unspecified
  values.
-<h6>Returns</h6>
+<p><b>Returns</b>
 <p><!--para 19 -->
  The wcsrtombs_s function returns zero if no runtime-constraint violation and no
  encoding error occurred. Otherwise, a nonzero value is returned.
@@ -31920,7 +31920,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  
 <!--page 666 -->
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note441" href="#note441">441)</a> If conversion stops because a terminating null wide character has been reached, the bytes stored
  include those necessary to reach the initial shift state immediately before the null byte. However, if
  the conversion stops before a terminating null wide character has been reached, the result will be null
@@ -31943,7 +31943,7 @@ margin: deleted text is marked with ''*'', new or changed text with '' ''.
  An implementation that defines __STDC_ANALYZABLE__ shall conform to the
  specifications in this annex.<sup><a href="#note443"><b>443)</b></a></sup>
 
-<h6>footnotes</h6>
+<p><b>Footnotes</b>
 <p><small><a name="note443" href="#note443">443)</a> Implementations that do not define __STDC_ANALYZABLE__ are not required to conform to these
  specifications.
 </small>