Skip to content

Commit 6bca3f8

Browse files
committed
Add some parameters missed.
1 parent 907b401 commit 6bca3f8

File tree

135 files changed

+412
-414
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+412
-414
lines changed

docs/c-runtime-library/abnormal-termination.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ int _abnormal_termination(
2323
2424
## Return value
2525
26-
**`true`** if the system is *unwinding* the stack; otherwise, **`false`**.
26+
**`true`** if the system is unwinding the stack; otherwise, **`false`**.
2727
2828
## Remarks
2929

docs/c-runtime-library/character-classification.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ if ((c >= 'A') && (c <= 'Z')) || ((c >= 'a') && (c <= 'z'))
4545
|[`ispunct`, `iswpunct`, `_ispunct_l`, `_iswpunct_l`](./reference/ispunct-iswpunct-ispunct-l-iswpunct-l.md), [`_ismbcgraph`, `_ismbcgraph_l`, `_ismbcprint`, `_ismbcprint_l`, `_ismbcpunct`, `_ismbcpunct_l`, `_ismbcblank`, `_ismbcblank_l`, `_ismbcspace`, `_ismbcspace_l`](./reference/ismbcgraph-functions.md)|Punctuation|
4646
|[`isspace`, `iswspace`, `_isspace_l`, `_iswspace_l`](./reference/isspace-iswspace-isspace-l-iswspace-l.md), [`_ismbcgraph`, `_ismbcgraph_l`, `_ismbcprint`, `_ismbcprint_l`, `_ismbcpunct`, `_ismbcpunct_l`, `_ismbcblank`, `_ismbcblank_l`, `_ismbcspace`, `_ismbcspace_l`](./reference/ismbcgraph-functions.md)|White-space|
4747
|[`isupper`, `iswupper`](./reference/isupper-isupper-l-iswupper-iswupper-l.md), [`_ismbclower`, `_ismbclower_l`, `_ismbcupper`, `_ismbcupper_l`](./reference/ismbclower-ismbclower-l-ismbcupper-ismbcupper-l.md)|Uppercase|
48-
|[`_isctype`, `iswctype`, `_isctype_l`, `_iswctype_l`](./reference/isctype-iswctype-isctype-l-iswctype-l.md)|Property specified by *desc* argument|
48+
|[`_isctype`, `iswctype`, `_isctype_l`, `_iswctype_l`](./reference/isctype-iswctype-isctype-l-iswctype-l.md)|Property specified by *`desc`* argument|
4949
|[`isxdigit`, `iswxdigit`, `_isxdigit_l`, `_iswxdigit_l`](./reference/isxdigit-iswxdigit-isxdigit-l-iswxdigit-l.md)|Hexadecimal digit|
5050
|[`_mbclen`, `mblen`, `_mblen_l`](./reference/mbclen-mblen-mblen-l.md)|Return length of valid multibyte character; result depends on **LC_CTYPE** category setting of current locale|
5151

docs/c-runtime-library/ciatan2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.assetid: 31f8cc78-b79f-4576-b73b-8add18e08680
1212
---
1313
# _CIatan2
1414

15-
Calculates the arctangent of *x* / *y* where *x* and *y* are values on the top of the stack.
15+
Calculates the arctangent of *`x`* / *`y`* where *`x`* and *`y`* are values on the top of the stack.
1616

1717
## Syntax
1818

docs/c-runtime-library/cipow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.assetid: 477aaf0c-ac58-4252-89dd-9f3e35d47536
1212
---
1313
# _CIpow
1414

15-
Calculates *x* raised to the *y* power based on the top values in the stack.
15+
Calculates *`x`* raised to the *`y`* power based on the top values in the stack.
1616

1717
## Syntax
1818

docs/c-runtime-library/crtlcmapstringw.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,24 +28,24 @@ int __crtLCMapStringW(
2828
2929
#### Parameters
3030
31-
*Locale*\
32-
Locale identifier. The locale provides a context for the string mapping or sort key generation. An application can use the `MAKELCID` macro to create a locale identifier.
31+
*`Locale`*\
32+
The locale identifier. The locale provides a context for the string mapping or sort key generation. An application can use the `MAKELCID` macro to create a locale identifier.
3333
34-
*dwMapFlags*\
34+
*`dwMapFlags`*\
3535
The type of transformation to be used during string mapping or sort key generation.
3636
37-
*lpSrcStr*\
37+
*`lpSrcStr`*\
3838
Pointer to a source string that the function maps or uses for sort key generation. This parameter is assumed to be a Unicode string.
3939
40-
*cchSrc*\
40+
*`cchSrc`*\
4141
Size, in characters, of the string pointed to by the `lpSrcStr` parameter. This count can include the null terminator, or not include it.
4242
4343
A `cchSrc` value of -1 specifies that the string pointed to by `lpSrcStr` is null-terminated. If so, and this function is being used in its string-mapping mode, the function calculates the string's length itself, and null-terminates the mapped string stored into `*lpDestStr`.
4444
45-
*lpDestStr*\
45+
*`lpDestStr`*\
4646
Long pointer to a buffer into which the function stores the mapped string or sort key.
4747
48-
*cchDest*\
48+
*`cchDest`*\
4949
Size, in characters, of the buffer pointed to by `lpDestStr`.
5050
5151
## Return value

docs/c-runtime-library/cxxframehandler.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@ EXCEPTION_DISPOSITION __CxxFrameHandler(
2727
2828
#### Parameters
2929
30-
*pExcept*\
30+
*`pExcept`*\
3131
Exception record that is passed to the possible **`catch`** statements.
3232
33-
*pRN*\
33+
*`pRN`*\
3434
Dynamic information about the stack frame that is used to handle the exception. For more information, see ehdata.h.
3535
36-
*pContext*\
36+
*`pContext`*\
3737
Context. (Not used on Intel processors.)
3838
39-
*pDC*\
39+
*`pDC`*\
4040
Additional information about the function entry and stack frame.
4141
4242
## Return value

docs/c-runtime-library/file-constants.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ The file constants are as follows:
2323
|Constant|Description|
2424
|-|-|
2525
| `_O_APPEND` | Repositions the file pointer to the end of the file before every write operation. |
26-
| `_O_CREAT` | Creates and opens a new file for writing; the constant has no effect if the file specified by *filename* exists. |
27-
| `_O_EXCL` | Returns an error value if the file specified by *filename* exists. Only applies when used with `_O_CREAT`. |
26+
| `_O_CREAT` | Creates and opens a new file for writing; the constant has no effect if the file specified by *`filename`* exists. |
27+
| `_O_EXCL` | Returns an error value if the file specified by *`filename`* exists. Only applies when used with `_O_CREAT`. |
2828
| `_O_RDONLY` | Opens file for reading only; if this flag is given, `_O_RDWR` and `_O_WRONLY` can't be given. |
2929
| `_O_RDWR` | Opens file for both reading and writing; if this flag is given, `_O_RDONLY` and `_O_WRONLY` can't be given. |
3030
| `_O_TRUNC` | Opens and truncates an existing file to zero length; the file must have write permission. The contents of the file are destroyed. If this flag is given, you can't specify `_O_RDONLY`. |

docs/c-runtime-library/file-translation-constants.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The translation modes are as follows:
3030

3131
Opens in binary (untranslated) mode. The above translations are suppressed.
3232

33-
If **t** or **b** isn't given in *mode*, the translation mode is defined by the default-mode variable [`_fmode`](./fmode.md). For more information about using text and binary modes, see [Text and binary mode file I/O](./text-and-binary-mode-file-i-o.md).
33+
If **t** or **b** isn't given in *`mode`*, the translation mode is defined by the default-mode variable [`_fmode`](./fmode.md). For more information about using text and binary modes, see [Text and binary mode file I/O](./text-and-binary-mode-file-i-o.md).
3434

3535
## See also
3636

docs/c-runtime-library/floating-point-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Previous 16-bit versions of Microsoft C/C++ and Microsoft Visual C++ supported t
103103
[`nearbyint`, `nearbyintf`, `nearbyintl`](./reference/nearbyint-nearbyintf-nearbyintl1.md)|Returns the rounded value
104104
[`nextafter`, `nextafterf`, `nextafterl`, `_nextafter`, `_nextafterf`](./reference/nextafter-functions.md)|Returns the next representable floating-point value
105105
[`nexttoward`, `nexttowardf`, `nexttowardl`](./reference/nextafter-functions.md)|Returns the next representable floating-point value
106-
[`pow`, `powf`, `powl`](./reference/pow-powf-powl.md)|Returns the value of *x*<sup>*y*</sup>
106+
[`pow`, `powf`, `powl`](./reference/pow-powf-powl.md)|Returns the value of *`x`*<sup>*`y`*</sup>
107107
[`remainder`, `remainderf`, `remainderl`](./reference/remainder-remainderf-remainderl.md)|Computes the remainder of the quotient of two floating-point values
108108
[`remquo`, `remquof`, `remquol`](./reference/remquo-remquof-remquol.md)|Computes the remainder of two integer values
109109
[`rint`, `rintf`, `rintl`](./reference/rint-rintf-rintl.md)|Rounds a floating-point value

docs/c-runtime-library/format-specification-syntax-printf-and-wprintf-functions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The various `printf` and `wprintf` functions take a format string and optional a
1111

1212
A conversion specification consists of optional and required fields in this form:
1313

14-
**%**\[[*flags*](#flags)]\[[*width*](#width)]\[.[*precision*](#precision)]\[[*size*](#size)][*type*](#type)
14+
> **%**\[[*flags*](#flags)]\[[*width*](#width)]\[.[*precision*](#precision)]\[[*size*](#size)][*type*](#type)
1515
1616
Each field of the conversion specification is a character or a number that signifies a particular format option or conversion specifier. The required *type* field specifies the kind of conversion to be applied to an argument. The optional *flags*, *width*, and *precision* fields control other format aspects such as leading spaces or zeroes, justification, and displayed precision. The *size* field specifies the size of the argument consumed and converted.
1717

@@ -27,7 +27,7 @@ A basic conversion specification contains only the percent sign and a *type* cha
2727
> `printf( "%s", user_name );`
2828
2929
> [!NOTE]
30-
> In Visual Studio 2015 The `printf` and `scanf` family of functions were declared as **`inline`** and moved to the `<stdio.h>` and `<conio.h>` headers. If you are migrating older code you might see *LNK2019* in connection with these functions. For more information, see [Visual C++ change history 2003 - 2015](../porting/visual-cpp-change-history-2003-2015.md#stdio_and_conio).
30+
> In Visual Studio 2015 The `printf` and `scanf` family of functions were declared as **`inline`** and moved to the `<stdio.h>` and `<conio.h>` headers. If you are migrating older code you might see LNK2019 in connection with these functions. For more information, see [Visual C++ change history 2003 - 2015](../porting/visual-cpp-change-history-2003-2015.md#stdio_and_conio).
3131
3232
## <a name="type"></a> Type conversion specifier
3333

0 commit comments

Comments
 (0)