Skip to content

Commit 6cdc7b7

Browse files
committed
cleanup
1 parent ed8749f commit 6cdc7b7

File tree

4 files changed

+10
-12
lines changed

4 files changed

+10
-12
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ api_name: ["_access_s", "_waccess_s", "_o__access_s", "_o__waccess_s"]
66
api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-filesystem-l1-1-0.dll"]
77
api_type: ["DLLExport"]
88
topic_type: ["apiref"]
9-
f1_keywords: ["waccess_s", "access_s", "_waccess_s", "_access_s"]
10-
helpviewer_keywords: ["access_s function", "taccess_s function", "_taccess_s function", "waccess_s function", "_access_s function", "_waccess_s function"]
9+
f1_keywords: ["waccess_s", "access_s", "_waccess_s", "_access_s", "taccess_s"]
10+
helpviewer_keywords: ["access_s function", "taccess_s function", "waccess_s function", "_access_s function", "_waccess_s function"]
1111
---
1212
# `_access_s`, `_waccess_s`, `taccess_s`
1313

1414
Determines file read/write permissions. These functions are versions of [`_access`, `_waccess`](access-waccess.md) with security enhancements as described in [Security features in the CRT](../security-features-in-the-crt.md).
1515

16-
For the `t_*` function variants, see [Generic-text routine mappings](#generic-text-routine-mappings).
16+
For `taccess_s`, see [Generic-text routine mappings](#generic-text-routine-mappings).
1717

1818
## Syntax
1919

@@ -69,16 +69,16 @@ By default, this function's global state is scoped to the application. To change
6969

7070
### Generic-text routine mappings
7171

72-
| Tchar.h routine | `_UNICODE` and `_MBCS` not defined | `_MBCS` defined | `_UNICODE` defined |
72+
| `Tchar.h` routine | `_UNICODE` and `_MBCS` not defined | `_MBCS` defined | `_UNICODE` defined |
7373
|---|---|---|---|
7474
| `_taccess_s` | **`_access_s`** | **`_access_s`** | **`_waccess_s`** |
7575

7676
## Requirements
7777

7878
| Routine | Required header | Optional header |
7979
|---|---|---|
80-
| **`_access_s`** | \<io.h> | \<errno.h> |
81-
| **`_waccess_s`** | \<wchar.h> or \<io.h> | \<errno.h> |
80+
| **`_access_s`** | `<io.h>` | `<errno.h>` |
81+
| **`_waccess_s`** | `<wchar.h>` or `<io.h>` | `<errno.h>` |
8282

8383
## Example
8484

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Creates, modifies, or removes environment variables. These functions are version
1616
> [!IMPORTANT]
1717
> This API cannot be used in applications that execute in the Windows Runtime. For more information, see [CRT functions not supported in Universal Windows Platform apps](../../cppcx/crt-functions-not-supported-in-universal-windows-platform-apps.md).
1818
19-
For the `t_*` function variants, see [Generic-text routine mappings](#generic-text-routine-mappings).
19+
For `_tputenv_s`, see [Generic-text routine mappings](#generic-text-routine-mappings).
2020

2121
## Syntax
2222

docs/c-runtime-library/reference/strncpy-s-strncpy-s-l-wcsncpy-s-wcsncpy-s-l-mbsncpy-s-mbsncpy-s-l.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Copies characters of one string to another. These versions of [`strncpy`, `_str
1616
> [!IMPORTANT]
1717
> **`_mbsncpy_s`** and **`_mbsncpy_s_l`** cannot be used in applications that execute in the Windows Runtime. For more information, see [CRT functions not supported in Universal Windows Platform apps](../../cppcx/crt-functions-not-supported-in-universal-windows-platform-apps.md).
1818
19-
For the `_t_*` function variants, see [Generic-text routine mappings](#generic-text-routine-mappings).
19+
For `_tcsnccpy_s` and `_tcsnccpy_s_l`, see [Generic-text routine mappings](#generic-text-routine-mappings).
2020

2121
## Syntax
2222

@@ -178,8 +178,6 @@ By default, this function's global state is scoped to the application. To change
178178
| `_tcsnccpy_s` | **`strncpy_s`** | **`_mbsncpy_s`** | **`_wcsncpy_s`** |
179179
| `_tcsnccpy_s_l` | **`_strncpy_s_l`** | **`_mbsncpy_s_l`** | **`_wcsncpy_s_l`** |
180180

181-
182-
183181
> [!NOTE]
184182
> **`_strncpy_s_l`**, **`_wcsncpy_s_l`** and **`_mbsncpy_s_l`** have no locale dependence. They're provided just for `_tcsncpy_s_l` and aren't intended to be called directly.
185183

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ api_name: ["_mbsnset_s_l", "_strnset_s", "_mbsnset_s", "_strnset_s_l", "_wcsnset
66
api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-multibyte-l1-1-0.dll", "api-ms-win-crt-string-l1-1-0.dll", "ntoskrnl.exe"]
77
api_type: ["DLLExport"]
88
topic_type: ["apiref"]
9-
f1_keywords: ["_mbsnset_s_l", "wcsnset_s", "_tcsnset_s_l", "_wcsnset_s", "_mbsnset_s", "_wcsnset_s_l", "_strnset_s_l", "strnset_s_l", "_tcsnset_s", "_strnset_s", "strnset_s", "mbsnset_s_l", "mbsnset_s", "wcsnset_s_l", "_tcsncset_s", "_tcsncset_s", "_tcsncset_s_l"]
9+
f1_keywords: ["_mbsnset_s_l", "wcsnset_s", "_tcsnset_s_l", "_wcsnset_s", "_mbsnset_s", "_wcsnset_s_l", "_strnset_s_l", "strnset_s_l", "_tcsnset_s", "_strnset_s", "strnset_s", "mbsnset_s_l", "mbsnset_s", "wcsnset_s_l", "_tcsncset_s", "_tcsncset_s_l"]
1010
helpviewer_keywords: ["tcsnset_s function", "mbsnset_s_l function", "initializing characters", "wcsnset_s function", "mbsnset_s function", "_tcsnset_s_l function", "_strnset_s_l function", "_mbsnset_s function", "strnset_s_l function", "_tcsnset_s function", "_strnset_s function", "tcsnset_s_l function", "_mbsnset_s_l function", "strnset_s function", "_wcsnset_s function", "_tcsncset_s function", "_tcsncset_s_l function"]
1111
---
1212
# `_strnset_s`, `_strnset_s_l`, `_wcsnset_s`, `_wcsnset_s_l`, `_mbsnset_s`, `_mbsnset_s_l`, `_tcsncset_s`, `_tcsncset_s_l`
@@ -16,7 +16,7 @@ Initializes characters of a string to a given character. These versions of [`_st
1616
> [!IMPORTANT]
1717
> **`_mbsnset_s`** and **`_mbsnset_s_l`** cannot be used in applications that execute in the Windows Runtime. For more information, see [CRT functions not supported in Universal Windows Platform apps](../../cppcx/crt-functions-not-supported-in-universal-windows-platform-apps.md).
1818
19-
For the `_t*` function variants, see [Generic-text routine mappings](#generic-text-routine-mappings).
19+
For `_tcsncset_s` and `_tcsncset_s_l` functions, see [Generic-text routine mappings](#generic-text-routine-mappings).
2020

2121
## Syntax
2222

0 commit comments

Comments
 (0)