Skip to content

Commit 6c61e42

Browse files
author
Colin Robertson
committed
Update more parameters
1 parent 8c1185f commit 6c61e42

632 files changed

Lines changed: 3632 additions & 4054 deletions

File tree

Some content is hidden

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

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,11 @@
240240
"redirect_url": "/cpp/c-runtime-library/reference/itoa-s-itow-s",
241241
"redirect_document_id": false
242242
},
243+
{
244+
"source_path": "docs/c-runtime-library/reference/ldiv-lldiv.md",
245+
"redirect_url": "/cpp/c-runtime-library/reference/div",
246+
"redirect_document_id": false
247+
},
243248
{
244249
"source_path": "docs/c-runtime-library/reference/ltoa.md",
245250
"redirect_url": "/cpp/c-runtime-library/reference/itoa-itow",

docs/c-runtime-library/reference/abort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,4 @@ File could not be opened: No such file or directory
112112
[signal](../../c-runtime-library/reference/signal.md)<br/>
113113
[_spawn, _wspawn Functions](../../c-runtime-library/spawn-wspawn-functions.md)<br/>
114114
[_DEBUG](../../c-runtime-library/debug.md)<br/>
115-
[_set_abort_behavior](../../c-runtime-library/reference/set-abort-behavior.md)
115+
[_set_abort_behavior](../../c-runtime-library/reference/set-abort-behavior.md)<br/>

docs/c-runtime-library/reference/abs-labs-llabs-abs64.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ llabs(LLONG_MIN) returns -9223372036854775808
122122
_abs64(_I64_MIN) returns 0x8000000000000000
123123
```
124124

125-
## See Also
125+
## See also
126126

127127
[Data Conversion](../../c-runtime-library/data-conversion.md)<br/>
128128
[Floating-Point Support](../../c-runtime-library/floating-point-support.md)<br/>

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Determines file read/write permissions. This is a version of [_access, _waccess]
2626

2727
## Syntax
2828

29-
```
29+
```C
3030
errno_t _access_s(
3131
const char *path,
3232
int mode
@@ -134,11 +134,11 @@ File crt_access_s.c exists.
134134
File crt_access_s.c does not have write permission.
135135
```
136136

137-
## See Also
137+
## See also
138138

139139
[File Handling](../../c-runtime-library/file-handling.md)<br/>
140140
[_access, _waccess](../../c-runtime-library/reference/access-waccess.md)<br/>
141141
[_chmod, _wchmod](../../c-runtime-library/reference/chmod-wchmod.md)<br/>
142142
[_fstat, _fstat32, _fstat64, _fstati64, _fstat32i64, _fstat64i32](../../c-runtime-library/reference/fstat-fstat32-fstat64-fstati64-fstat32i64-fstat64i32.md)<br/>
143143
[_open, _wopen](../../c-runtime-library/reference/open-wopen.md)<br/>
144-
[_stat, _wstat Functions](../../c-runtime-library/reference/stat-functions.md)
144+
[_stat, _wstat Functions](../../c-runtime-library/reference/stat-functions.md)<br/>

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Determines if a file is read-only or not. More secure versions are available; se
2626

2727
## Syntax
2828

29-
```
29+
```C
3030
int _access(
3131
const char *path,
3232
int mode
@@ -124,10 +124,10 @@ File crt_ACCESS.C exists.
124124
File crt_ACCESS.C does not have write permission.
125125
```
126126

127-
## See Also
127+
## See also
128128

129129
[File Handling](../../c-runtime-library/file-handling.md)<br/>
130130
[_chmod, _wchmod](../../c-runtime-library/reference/chmod-wchmod.md)<br/>
131131
[_fstat, _fstat32, _fstat64, _fstati64, _fstat32i64, _fstat64i32](../../c-runtime-library/reference/fstat-fstat32-fstat64-fstati64-fstat32i64-fstat64i32.md)<br/>
132132
[_open, _wopen](../../c-runtime-library/reference/open-wopen.md)<br/>
133-
[_stat, _wstat Functions](../../c-runtime-library/reference/stat-functions.md)
133+
[_stat, _wstat Functions](../../c-runtime-library/reference/stat-functions.md)<br/>

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Frees a block of memory that was allocated with [_aligned_malloc](../../c-runtim
2626

2727
## Syntax
2828

29-
```
29+
```C
3030
void _aligned_free_dbg(
3131
void *memblock
3232
);
@@ -55,6 +55,6 @@ For information about how memory blocks are allocated, initialized, and managed
5555

5656
For more compatibility information, see [Compatibility](../../c-runtime-library/compatibility.md) in the Introduction.
5757

58-
## See Also
58+
## See also
5959

60-
[Debug Routines](../../c-runtime-library/debug-routines.md)
60+
[Debug Routines](../../c-runtime-library/debug-routines.md)<br/>

docs/c-runtime-library/reference/aligned-free.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Frees a block of memory that was allocated with [_aligned_malloc](../../c-runtim
2626

2727
## Syntax
2828

29-
```
29+
```C
3030
void _aligned_free (
3131
void *memblock
3232
);
@@ -53,6 +53,6 @@ This function does not validate its parameter, unlike the other _aligned CRT fun
5353

5454
For more information, see [_aligned_malloc](../../c-runtime-library/reference/aligned-malloc.md).
5555

56-
## See Also
56+
## See also
5757

58-
[Data Alignment](../../c-runtime-library/data-alignment.md)
58+
[Data Alignment](../../c-runtime-library/data-alignment.md)<br/>

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Allocates memory on a specified alignment boundary with additional space for a d
2626

2727
## Syntax
2828

29-
```
29+
```C
3030
void * _aligned_malloc_dbg(
3131
size_t size,
3232
size_t alignment,
@@ -37,16 +37,16 @@ void * _aligned_malloc_dbg(
3737

3838
### Parameters
3939

40-
[in] *size*
40+
*size*
4141
Size of the requested memory allocation.
4242

43-
[in] *alignment*
43+
*alignment*
4444
The alignment value, which must be an integer power of 2.
4545

46-
[in] *filename*
46+
*filename*
4747
Pointer to the name of the source file that requested the allocation operation or NULL.
4848

49-
[in] *linenumber*
49+
*linenumber*
5050
Line number in the source file where the allocation operation was requested or NULL.
5151

5252
## Return Value
@@ -75,6 +75,6 @@ For more compatibility information, see [Compatibility](../../c-runtime-library/
7575

7676
Debug versions of [C run-time libraries](../../c-runtime-library/crt-library-features.md) only.
7777

78-
## See Also
78+
## See also
7979

80-
[Debug Routines](../../c-runtime-library/debug-routines.md)
80+
[Debug Routines](../../c-runtime-library/debug-routines.md)<br/>

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Allocates memory on a specified alignment boundary.
2626

2727
## Syntax
2828

29-
```
29+
```C
3030
void * _aligned_malloc(
3131
size_t size,
3232
size_t alignment
@@ -141,6 +141,6 @@ This pointer, 3280891, is offset by 5 on alignment of 16
141141
This pointer, 3280891, is offset by 5 on alignment of 16
142142
```
143143

144-
## See Also
144+
## See also
145145

146-
[Data Alignment](../../c-runtime-library/data-alignment.md)
146+
[Data Alignment](../../c-runtime-library/data-alignment.md)<br/>

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Returns the size of a memory block allocated in the heap (debug version only).
2626

2727
## Syntax
2828

29-
```
29+
```C
3030
size_t _aligned_msize_dbg(
3131
void *memblock,
3232
size_t alignment,
@@ -36,13 +36,13 @@ size_t _aligned_msize_dbg(
3636

3737
### Parameters
3838

39-
[in] *memblock*
39+
*memblock*
4040
Pointer to the memory block.
4141

42-
[in] *alignment*
42+
*alignment*
4343
The alignment value, which must be an integer power of 2.
4444

45-
[in] *offset*
45+
*offset*
4646
The offset into the memory allocation to force the alignment.
4747

4848
## Return Value
@@ -71,6 +71,6 @@ For more compatibility information, see [Compatibility](../../c-runtime-library/
7171

7272
Debug versions of [C run-time libraries](../../c-runtime-library/crt-library-features.md) only.
7373

74-
## See Also
74+
## See also
7575

76-
[Memory Allocation](../../c-runtime-library/memory-allocation.md)
76+
[Memory Allocation](../../c-runtime-library/memory-allocation.md)<br/>

0 commit comments

Comments
 (0)