Skip to content

Commit 94dbbdf

Browse files
committed
cleanup
1 parent 8333614 commit 94dbbdf

7 files changed

+19
-19
lines changed

docs/c-runtime-library/reference/access-s-waccess-s.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ The function in the `tchar.h` column maps to the function in the other columns d
7373

7474
| `tchar.h` function | `_UNICODE` and `_MBCS` not defined | `_MBCS` defined | `_UNICODE` defined |
7575
|---|---|---|---|
76-
| `_taccess_s` | **`_access_s`** | **`_access_s`** | **`_waccess_s`** |
76+
| `_taccess_s` | `_access_s` | `_access_s` | `_waccess_s` |
7777

7878
## Requirements
7979

docs/c-runtime-library/reference/fprintf-fprintf-l-fwprintf-fwprintf-l.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ The function in the `tchar.h` column maps to the function in the other columns d
7979

8080
| `tchar.h` function | `_UNICODE` and `_MBCS` not defined | `_MBCS` defined | `_UNICODE` defined |
8181
|---|---|---|---|
82-
| **`_ftprintf`** | **`fprintf`** | **`fprintf`** | **`fwprintf`** |
83-
| **`_ftprintf_l`** | **`_fprintf_l`** | **`_fprintf_l`** | **`_fwprintf_l`** |
82+
| `_ftprintf` | `fprintf` | `fprintf` | `fwprintf` |
83+
| `_ftprintf_l` | `_fprintf_l` | `_fprintf_l` | `_fwprintf_l` |
8484

8585
For more information, see [Format specification syntax](../format-specification-syntax-printf-and-wprintf-functions.md).
8686

docs/c-runtime-library/reference/fprintf-p-fprintf-p-l-fwprintf-p-fwprintf-p-l.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,17 +79,17 @@ The function in the `tchar.h` column maps to the function in the other columns d
7979

8080
| `tchar.h` function | `_UNICODE` and `_MBCS` not defined | `_MBCS` defined | `_UNICODE` defined |
8181
|---|---|---|---|
82-
| `_ftprintf_p` | **`_fprintf_p`** | **`_fprintf_p`** | **`_fwprintf_p`** |
83-
| `_ftprintf_p_l` | **`_fprintf_p_l`** | **`_fprintf_p_l`** | **`_fwprintf_p_l`** |
82+
| `_ftprintf_p` | `_fprintf_p` | `_fprintf_p` | `_fwprintf_p` |
83+
| `_ftprintf_p_l` | `_fprintf_p_l` | `_fprintf_p_l` | `_fwprintf_p_l` |
8484

8585
For more information, see [Format specification syntax](../format-specification-syntax-printf-and-wprintf-functions.md).
8686

8787
## Requirements
8888

8989
| Function | Required header |
9090
|---|---|
91-
| **`_fprintf_p`**, **`_fprintf_p_l`** | \<stdio.h> |
92-
| **`_fwprintf_p`**, **`_fwprintf_p_l`** | \<stdio.h> or \<wchar.h> |
91+
| `_fprintf_p`, `_fprintf_p_l` | `<stdio.h>` |
92+
| `_fwprintf_p`, `_fwprintf_p_l` | `<stdio.h>` or `<wchar.h>` |
9393

9494
For more compatibility information, see [Compatibility](../compatibility.md).
9595

docs/c-runtime-library/reference/fprintf-s-fprintf-s-l-fwprintf-s-fwprintf-s-l.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ The function in the `tchar.h` column maps to the function in the other columns d
8080

8181
| `tchar.h` function | `_UNICODE` and `_MBCS` not defined | `_MBCS` defined | `_UNICODE` defined |
8282
|---|---|---|---|
83-
| **`_ftprintf_s`** | **`fprintf_s`** | **`fprintf_s`** | **`fwprintf_s`** |
84-
| **`_ftprintf_s_l`** | **`_fprintf_s_l`** | **`_fprintf_s_l`** | **`_fwprintf_s_l`** |
83+
| `_ftprintf_s` | `fprintf_s` | `fprintf_s` | `fwprintf_s` |
84+
| `_ftprintf_s_l` | `_fprintf_s_l` | `_fprintf_s_l` | `_fwprintf_s_l` |
8585

8686
For more information, see [Format specification syntax](../format-specification-syntax-printf-and-wprintf-functions.md).
8787

docs/c-runtime-library/reference/putenv-s-wputenv-s.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ By default, this function's global state is scoped to the application. To change
6262

6363
The function in the `tchar.h` column maps to the function in the other columns depending on the character set that is defined at compile time.
6464

65-
| `tchar.h` routine | `_UNICODE` and `_MBCS` not defined | `_MBCS` defined | `_UNICODE` defined |
65+
| `tchar.h` function | `_UNICODE` and `_MBCS` not defined | `_MBCS` defined | `_UNICODE` defined |
6666
|---|---|---|---|
67-
| `_tputenv_s` | **`_putenv_s`** | **`_putenv_s`** | **`_wputenv_s`** |
67+
| `_tputenv_s` | `_putenv_s` | `_putenv_s` | `_wputenv_s` |
6868

6969
*`varname`* is the name of the environment variable to be added or modified and *`value_string`* is the variable's value. If *`varname`* is already part of the environment, its value is replaced by *`value_string`*; otherwise, the new *`varname`* variable and its *`value_string`* are added to the environment. You can remove a variable from the environment by specifying an empty string (that is, `""`) for *`value_string`*.
7070

docs/c-runtime-library/reference/strnset-s-strnset-s-l-wcsnset-s-wcsnset-s-l-mbsnset-s-mbsnset-s-l.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,12 @@ By default, this function's global state is scoped to the application. To change
101101

102102
The function in the `tchar.h` column maps to the function in the other columns depending on the character set that is defined at compile time.
103103

104-
| `tchar.h` routine | `_UNICODE` and `_MBCS` not defined | `_MBCS` defined | `_UNICODE` defined |
104+
| `tchar.h` function | `_UNICODE` and `_MBCS` not defined | `_MBCS` defined | `_UNICODE` defined |
105105
|---|---|---|---|
106-
| `_tcsnset_s` | **`_strnset_s`** | **`_mbsnbset_s`** | **`_wcsnset_s`** |
107-
| `_tcsnset_s_l` | **`_strnset_s_l`** | **`_mbsnbset_s_l`** | **`_wcsnset_s_l`** |
108-
| `_tcsncset_s` | **`_strnset_s`** | **`_mbsnset_s`** | **`_wcsnset_s`** |
109-
| `_tcsncset_s_l` | **`_strnset_s_l`** | **`_mbsnset_s_l`** | **`_wcsnset_s_l`** |
106+
| `_tcsnset_s` | `_strnset_s` | `_mbsnbset_s` | `_wcsnset_s` |
107+
| `_tcsnset_s_l` | `_strnset_s_l` | `_mbsnbset_s_l` | `_wcsnset_s_l` |
108+
| `_tcsncset_s` | `_strnset_s` | `_mbsnset_s` | `_wcsnset_s` |
109+
| `_tcsncset_s_l` | `_strnset_s_l` | `_mbsnset_s_l` | `_wcsnset_s_l` |
110110

111111
## Requirements
112112

docs/c-runtime-library/reference/vsprintf-s-vsprintf-s-l-vswprintf-s-vswprintf-s-l.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ In C++, using these functions is simplified by template overloads. The overloads
100100

101101
The function in the `tchar.h` column maps to the function in the other columns depending on the character set that is defined at compile time.
102102

103-
| `tchar.h` routine | `_UNICODE` and `_MBCS` not defined | `_MBCS` defined | `_UNICODE` defined |
103+
| `tchar.h` function | `_UNICODE` and `_MBCS` not defined | `_MBCS` defined | `_UNICODE` defined |
104104
|---|---|---|---|
105-
| `_vstprintf_s` | **`vsprintf_s`** | **`vsprintf_s`** | **`vswprintf_s`** |
106-
| `_vstprintf_s_l` | **`_vsprintf_s_l`** | **`_vsprintf_s_l`** | **`_vswprintf_s_l`** |
105+
| `_vstprintf_s` | `vsprintf_s` | `vsprintf_s` | `vswprintf_s` |
106+
| `_vstprintf_s_l` | `_vsprintf_s_l` | `_vsprintf_s_l` | `_vswprintf_s_l` |
107107

108108
## Requirements
109109

0 commit comments

Comments
 (0)