From Jason Turner

[locale.convenience]

Diff to HTML by rtfpessoa

tmp/tmpqam52vtl/{from.md → to.md} RENAMED
@@ -1,8 +1,8 @@
1
- ### Convenience interfaces <a id="locale.convenience">[[locale.convenience]]</a>
2
 
3
- #### Character classification <a id="classification">[[classification]]</a>
4
 
5
  ``` cpp
6
  template<class charT> bool isspace (charT c, const locale& loc);
7
  template<class charT> bool isprint (charT c, const locale& loc);
8
  template<class charT> bool iscntrl (charT c, const locale& loc);
@@ -24,11 +24,11 @@ use_facet<ctype<charT>>(loc).is(ctype_base::F, c)
24
  ```
25
 
26
  where `F` is the `ctype_base::mask` value corresponding to that function
27
  [[category.ctype]].[^4]
28
 
29
- #### Character conversions <a id="conversions.character">[[conversions.character]]</a>
30
 
31
  ``` cpp
32
  template<class charT> charT toupper(charT c, const locale& loc);
33
  ```
34
 
 
1
+ #### Convenience interfaces <a id="locale.convenience">[[locale.convenience]]</a>
2
 
3
+ ##### Character classification <a id="classification">[[classification]]</a>
4
 
5
  ``` cpp
6
  template<class charT> bool isspace (charT c, const locale& loc);
7
  template<class charT> bool isprint (charT c, const locale& loc);
8
  template<class charT> bool iscntrl (charT c, const locale& loc);
 
24
  ```
25
 
26
  where `F` is the `ctype_base::mask` value corresponding to that function
27
  [[category.ctype]].[^4]
28
 
29
+ ##### Character conversions <a id="conversions.character">[[conversions.character]]</a>
30
 
31
  ``` cpp
32
  template<class charT> charT toupper(charT c, const locale& loc);
33
  ```
34