Skip to content

Commit 1babdf4

Browse files
author
Colin Robertson
committed
Add break tags to parameters
1 parent 707dde8 commit 1babdf4

455 files changed

Lines changed: 1164 additions & 1164 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.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ int _waccess(
3939

4040
### Parameters
4141

42-
*path*
42+
*path*<br/>
4343
File or directory path.
4444

45-
*mode*
45+
*mode*<br/>
4646
Read/write attribute.
4747

4848
## Return Value

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,16 @@ void * _aligned_malloc_dbg(
3737

3838
### Parameters
3939

40-
*size*
40+
*size*<br/>
4141
Size of the requested memory allocation.
4242

43-
*alignment*
43+
*alignment*<br/>
4444
The alignment value, which must be an integer power of 2.
4545

46-
*filename*
46+
*filename*<br/>
4747
Pointer to the name of the source file that requested the allocation operation or NULL.
4848

49-
*linenumber*
49+
*linenumber*<br/>
5050
Line number in the source file where the allocation operation was requested or NULL.
5151

5252
## Return Value

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ void * _aligned_malloc(
3535

3636
### Parameters
3737

38-
*size*
38+
*size*<br/>
3939
Size of the requested memory allocation.
4040

41-
*alignment*
41+
*alignment*<br/>
4242
The alignment value, which must be an integer power of 2.
4343

4444
## Return Value

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ size_t _aligned_msize_dbg(
3636

3737
### Parameters
3838

39-
*memblock*
39+
*memblock*<br/>
4040
Pointer to the memory block.
4141

42-
*alignment*
42+
*alignment*<br/>
4343
The alignment value, which must be an integer power of 2.
4444

45-
*offset*
45+
*offset*<br/>
4646
The offset into the memory allocation to force the alignment.
4747

4848
## Return Value

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ size_t _msize(
3636

3737
### Parameters
3838

39-
*memblock*
39+
*memblock*<br/>
4040
Pointer to the memory block.
4141

42-
*alignment*
42+
*alignment*<br/>
4343
The alignment value, which must be an integer power of 2.
4444

45-
*offset*
45+
*offset*<br/>
4646
The offset into the memory allocation to force the alignment.
4747

4848
## Return Value

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,19 @@ void * _aligned_offset_malloc_dbg(
3838

3939
### Parameters
4040

41-
*size*
41+
*size*<br/>
4242
The size of the requested memory allocation.
4343

44-
*alignment*
44+
*alignment*<br/>
4545
The alignment value, which must be an integer power of 2.
4646

47-
*offset*
47+
*offset*<br/>
4848
The offset into the memory allocation to force the alignment.
4949

50-
*filename*
50+
*filename*<br/>
5151
Pointer to the name of the source file that requested the allocation operation or NULL.
5252

53-
*linenumber*
53+
*linenumber*<br/>
5454
Line number in the source file where the allocation operation was requested or NULL.
5555

5656
## Return Value

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ void * _aligned_offset_malloc(
3636

3737
### Parameters
3838

39-
*size*
39+
*size*<br/>
4040
The size of the requested memory allocation.
4141

42-
*alignment*
42+
*alignment*<br/>
4343
The alignment value, which must be an integer power of 2.
4444

45-
*offset*
45+
*offset*<br/>
4646
The offset into the memory allocation to force the alignment.
4747

4848
## Return Value

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,22 +39,22 @@ void * _aligned_offset_realloc_dbg(
3939

4040
### Parameters
4141

42-
*memblock*
42+
*memblock*<br/>
4343
The current memory block pointer.
4444

45-
*size*
45+
*size*<br/>
4646
The size of the memory allocation.
4747

48-
*alignment*
48+
*alignment*<br/>
4949
The alignment value, which must be an integer power of 2.
5050

51-
*offset*
51+
*offset*<br/>
5252
The offset into the memory allocation to force the alignment.
5353

54-
*filename*
54+
*filename*<br/>
5555
Pointer to the name of the source file that requested the `aligned_offset_realloc` operation or NULL.
5656

57-
*linenumber*
57+
*linenumber*<br/>
5858
Line number in the source file where the `aligned_offset_realloc` operation was requested or NULL.
5959

6060
## Return Value

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,16 @@ void * _aligned_offset_realloc(
3737

3838
### Parameters
3939

40-
*memblock*
40+
*memblock*<br/>
4141
The current memory block pointer.
4242

43-
*size*
43+
*size*<br/>
4444
The size of the memory allocation.
4545

46-
*alignment*
46+
*alignment*<br/>
4747
The alignment value, which must be an integer power of 2.
4848

49-
*offset*
49+
*offset*<br/>
5050
The offset into the memory allocation to force the alignment.
5151

5252
## Return Value

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,25 +40,25 @@ void * _aligned_offset_recalloc_dbg(
4040

4141
### Parameters
4242

43-
*memblock*
43+
*memblock*<br/>
4444
The current memory block pointer.
4545

46-
*number*
46+
*number*<br/>
4747
Number of elements.
4848

49-
*size*
49+
*size*<br/>
5050
Length in bytes of each element.
5151

52-
*alignment*
52+
*alignment*<br/>
5353
The alignment value, which must be an integer power of 2.
5454

55-
*offset*
55+
*offset*<br/>
5656
The offset into the memory allocation to force the alignment.
5757

58-
*filename*
58+
*filename*<br/>
5959
Pointer to the name of the source file that requested the `realloc` operation or NULL.
6060

61-
*linenumber*
61+
*linenumber*<br/>
6262
Line number in the source file where the `realloc` operation was requested or NULL.
6363

6464
## Return Value

0 commit comments

Comments
 (0)