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

docs/c-runtime-library/fseek-lseek-constants.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.assetid: 9deeb13e-5aa3-4c33-80d8-721c80a4de9d
1616

1717
## Remarks
1818

19-
The *origin* argument specifies the initial position and can be one of the following manifest constants:
19+
The *`origin`* argument specifies the initial position and can be one of the following manifest constants:
2020

2121
|Constant|Meaning|
2222
|--------------|-------------|

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ ms.assetid: c3dc92c8-60e3-4d29-9f50-5d217627c8ad
1616

1717
## Remarks
1818

19-
The *mode* argument in the call to the `_locking` function specifies the locking action to be performed.
19+
The *`mode`* argument in the call to the `_locking` function specifies the locking action to be performed.
2020

21-
The *mode* argument must be one of the following manifest constants.
21+
The *`mode`* argument must be one of the following manifest constants.
2222

2323
|Value|Description|
2424
|-|-|

docs/c-runtime-library/reference/acos-acosf-acosl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Value between -1 and 1, for which to calculate the arccosine (the inverse cosine
3232
3333
## Return value
3434
35-
The **`acos`** function returns the arccosine of *x* in the range 0 to π radians.
35+
The **`acos`** function returns the arccosine of *`x`* in the range 0 to π radians.
3636
3737
By default, if *`x`* is less than -1 or greater than 1, **`acos`** returns an indefinite.
3838

docs/c-runtime-library/reference/acosh-acoshf-acoshl.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ long double acosh( long double x ); // C++ only
2828
2929
### Parameters
3030
31-
*x*\
31+
*`x`*\
3232
Floating-point value.
3333
3434
## Return value
3535
36-
The **acosh** functions return the inverse hyperbolic cosine (arc hyperbolic cosine) of *x*. These functions are valid over the domain *x* ≥ 1. If *x* is less than 1, `errno` is set to `EDOM`, and the result is a quiet NaN. If *x* is a quiet NaN, indefinite, or infinity, the same value is returned.
36+
The **acosh** functions return the inverse hyperbolic cosine (arc hyperbolic cosine) of *`x`*. These functions are valid over the domain *`x`* ≥ 1. If *`x`* is less than 1, `errno` is set to `EDOM`, and the result is a quiet NaN. If *`x`* is a quiet NaN, indefinite, or infinity, the same value is returned.
3737
3838
|Input|SEH Exception|`_matherr` Exception|
3939
|-----------|-------------------|--------------------------|
4040
|± QNAN, IND, INF|none|none|
41-
|*x* < 1|none|none|
41+
|*`x`* < 1|none|none|
4242
4343
## Remarks
4444

docs/c-runtime-library/reference/aligned-malloc-dbg.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ A pointer to the memory block that was allocated or NULL if the operation failed
4949

5050
**_aligned_malloc_dbg** allocates the memory block with slightly more space than the requested *`size`*. The extra space is used by the debug heap manager to link the debug memory blocks and to provide the application with debug header information and overwrite buffers. When the block is allocated, the user portion of the block is filled with the value 0xCD, and each of the overwrite buffers are filled with 0xFD.
5151

52-
**_aligned_malloc_dbg** sets `errno` to `ENOMEM` if a memory allocation fails or if the amount of memory needed (including the overhead mentioned previously) exceeds `_HEAP_MAXREQ`. For information about this and other error codes, see [`errno`, `_doserrno`, `_sys_errlist`, and `_sys_nerr`](../errno-doserrno-sys-errlist-and-sys-nerr.md). Also, **_aligned_malloc_dbg** validates its parameters. If *alignment* isn't a power of 2 or *size* is zero, this function invokes the invalid parameter handler, as described in [Parameter validation](../parameter-validation.md). If execution is allowed to continue, this function returns NULL and sets `errno` to `EINVAL`.
52+
**_aligned_malloc_dbg** sets `errno` to `ENOMEM` if a memory allocation fails or if the amount of memory needed (including the overhead mentioned previously) exceeds `_HEAP_MAXREQ`. For information about this and other error codes, see [`errno`, `_doserrno`, `_sys_errlist`, and `_sys_nerr`](../errno-doserrno-sys-errlist-and-sys-nerr.md). Also, **_aligned_malloc_dbg** validates its parameters. If *`alignment`* isn't a power of 2 or *`size`* is zero, this function invokes the invalid parameter handler, as described in [Parameter validation](../parameter-validation.md). If execution is allowed to continue, this function returns NULL and sets `errno` to `EINVAL`.
5353

5454
For information about how memory blocks are allocated, initialized, and managed in the debug version of the base heap, see [CRT debug heap details](/visualstudio/debugger/crt-debug-heap-details). For information about the allocation block types and how they're used, see [Types of blocks on the debug heap](/visualstudio/debugger/crt-debug-heap-details). For information about the differences between standard heap functions and their debug versions, see [Debug versions of heap allocation functions](/visualstudio/debugger/debug-versions-of-heap-allocation-functions).
5555

docs/c-runtime-library/reference/aligned-msize-dbg.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The *`alignment`* and *`offset`* values must be the same as the values passed to
4545

4646
**_aligned_msize_dbg** is a debug version of the [`_aligned_msize`](aligned-msize.md) function. When [`_DEBUG`](../debug.md) isn't defined, each call to **_aligned_msize_dbg** is reduced to a call to **_aligned_msize**. Both **_aligned_msize** and **_aligned_msize_dbg** calculate the size of a memory block in the base heap, but **_aligned_msize_dbg** adds a debugging feature: It includes the buffers on either side of the user portion of the memory block in the returned size.
4747

48-
This function validates its parameter. If *`memblock`* is a null pointer or *alignment* isn't a power of 2, **_msize** invokes an invalid parameter handler, as described in [Parameter validation](../parameter-validation.md). If the error is handled, the function sets **errno** to **EINVAL** and returns -1.
48+
This function validates its parameter. If *`memblock`* is a null pointer or *`alignment`* isn't a power of 2, **_msize** invokes an invalid parameter handler, as described in [Parameter validation](../parameter-validation.md). If the error is handled, the function sets **errno** to **EINVAL** and returns -1.
4949

5050
For information about how memory blocks are allocated, initialized, and managed in the debug version of the base heap, see [CRT debug heap details](/visualstudio/debugger/crt-debug-heap-details). For information about the allocation block types and how they're used, see [Types of blocks on the debug heap](/visualstudio/debugger/crt-debug-heap-details). For information about the differences between standard heap functions and their debug versions, see [Debug versions of heap allocation functions](/visualstudio/debugger/debug-versions-of-heap-allocation-functions).
5151

docs/c-runtime-library/reference/aligned-offset-realloc-dbg.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Line number in the source file where the **aligned_offset_realloc** operation wa
5757

5858
Like [`_aligned_offset_malloc`](aligned-offset-malloc.md), **_aligned_offset_realloc_dbg** allows a structure to be aligned at an offset within the structure.
5959

60-
**_realloc_dbg** reallocates the specified memory block with slightly more space than the requested *newSize*. *newSize* might be greater or less than the size of the originally allocated memory block. The extra space is used by the debug heap manager to link the debug memory blocks and to provide the application with debug header information and overwrite buffers. The reallocation might both move the original memory block to a different location in the heap, and also change the size of the memory block. If the memory block is moved, the contents of the original block are overwritten.
60+
**_realloc_dbg** reallocates the specified memory block with slightly more space than the requested *`newSize`*. *`newSize`* might be greater or less than the size of the originally allocated memory block. The extra space is used by the debug heap manager to link the debug memory blocks and to provide the application with debug header information and overwrite buffers. The reallocation might both move the original memory block to a different location in the heap, and also change the size of the memory block. If the memory block is moved, the contents of the original block are overwritten.
6161

6262
This function sets **errno** to **ENOMEM** if the memory allocation failed or if the requested size was greater than **_HEAP_MAXREQ**. For more information about **errno**, see [`errno`, `_doserrno`, `_sys_errlist`, and `_sys_nerr`](../errno-doserrno-sys-errlist-and-sys-nerr.md). Also, **_aligned_offset_realloc_dbg** validates its parameters. If *`alignment`* isn't a power of 2 or if *`offset`* is non-zero and greater than or equal to *`size`*, this function invokes the invalid parameter handler, as described in [Parameter validation](../parameter-validation.md). If execution is allowed to continue, this function returns **NULL** and sets **errno** to **EINVAL**.
6363

0 commit comments

Comments
 (0)