Skip to content

Commit 924772a

Browse files
committed
Fix function link text in CRT articles
1 parent 58265b4 commit 924772a

10 files changed

+37
-37
lines changed

docs/c-runtime-library/reference/cosh-coshf-coshl.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ See the example in [`sinh`, `sinhf`, `sinhl`](sinh-sinhf-sinhl.md).
6565
## See also
6666
6767
[Math and floating-point support](../floating-point-support.md)\
68-
[`acosh, acoshf, acoshl`](acosh-acoshf-acoshl.md)\
69-
[`asinh, asinhf, asinhl`](asinh-asinhf-asinhl.md)\
70-
[`atanh, atanhf, atanhl`](atanh-atanhf-atanhl.md)\
68+
[`acosh`, `acoshf`, `acoshl`](acosh-acoshf-acoshl.md)\
69+
[`asinh`, `asinhf`, `asinhl`](asinh-asinhf-asinhl.md)\
70+
[`atanh`, `atanhf`, `atanhl`](atanh-atanhf-atanhl.md)\
7171
[`_matherr`](matherr.md)\
72-
[`sinh, sinhf, sinhl`](sinh-sinhf-sinhl.md)\
73-
[`tanh, tanhf, tanhl`](tanh-tanhf-tanhl.md)
72+
[`sinh`, `sinhf`, `sinhl`](sinh-sinhf-sinhl.md)\
73+
[`tanh`, `tanhf`, `tanhl`](tanh-tanhf-tanhl.md)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ If the difference in memory states is significant, **`_CrtMemDifference`** retur
4242

4343
The **`_CrtMemDifference`** function compares *`oldState`* and *`newState`* and stores their differences in *`stateDiff`*, which can then be used by the app to detect memory leaks and other memory problems. When [`_DEBUG`](../debug.md) isn't defined, calls to **`_CrtMemDifference`** are removed during preprocessing.
4444

45-
*`newState`* and *`oldState`* must each be a valid pointer to a **`_CrtMemState`** structure, defined in `crtdbg.h`, that [`_CrtMemCheckpoint`](crtmemcheckpoint.md) has filled in before the call to **`_CrtMemDifference`**. *`stateDiff`* must be a pointer to a previously allocated instance of the **`_CrtMemState`** structure. If *`stateDiff`*, *`newState`*, or *`oldState`* is `NULL`, the invalid parameter handler is invoked, as described in [Parameter validation](../parameter-validation.md). If execution is allowed to continue, [`errno, _doserrno, _sys_errlist, and _sys_nerr`](../errno-doserrno-sys-errlist-and-sys-nerr.md) is set to `EINVAL` and the function returns `FALSE`.
45+
*`newState`* and *`oldState`* must each be a valid pointer to a **`_CrtMemState`** structure, defined in `crtdbg.h`, that [`_CrtMemCheckpoint`](crtmemcheckpoint.md) has filled in before the call to **`_CrtMemDifference`**. *`stateDiff`* must be a pointer to a previously allocated instance of the **`_CrtMemState`** structure. If *`stateDiff`*, *`newState`*, or *`oldState`* is `NULL`, the invalid parameter handler is invoked, as described in [Parameter validation](../parameter-validation.md). If execution is allowed to continue, [`errno`, `_doserrno`, `_sys_errlist`, and `_sys_nerr`](../errno-doserrno-sys-errlist-and-sys-nerr.md) is set to `EINVAL` and the function returns `FALSE`.
4646

4747
**`_CrtMemDifference`** compares the **`_CrtMemState`** field values of the blocks in *`oldState`* to the ones in *`newState`* and stores the result in *`stateDiff`*. When the number of allocated block types or total number of allocated blocks for each type differs between the two memory states, the difference in states is considered significant. The difference between the largest amount ever allocated at once for the two states and the difference between total allocations for the two states are also stored in *`stateDiff`*.
4848

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ helpviewer_keywords: ["_CrtSetReportMode function", "CrtSetReportMode function"]
1111
---
1212
# `_CrtSetReportMode`
1313

14-
Specifies the destination or destinations for a specific report type generated by `_CrtDbgReport` and any macros that call [`_CrtDbgReport, _CrtDbgReportW`](crtdbgreport-crtdbgreportw.md), such as [`_ASSERT`, `_ASSERTE`, `_ASSERT_EXPR` macros](assert-asserte-assert-expr-macros.md) and [`_RPT`, `_RPTF`, `_RPTW`, `_RPTFW` macros](rpt-rptf-rptw-rptfw-macros.md) (debug version only).
14+
Specifies the destination or destinations for a specific report type generated by `_CrtDbgReport` and any macros that call [`_CrtDbgReport`, `_CrtDbgReportW`](crtdbgreport-crtdbgreportw.md), such as [`_ASSERT`, `_ASSERTE`, `_ASSERT_EXPR` macros](assert-asserte-assert-expr-macros.md) and [`_RPT`, `_RPTF`, `_RPTW`, `_RPTFW` macros](rpt-rptf-rptw-rptfw-macros.md) (debug version only).
1515

1616
## Syntax
1717

@@ -32,7 +32,7 @@ New report mode or modes for *`reportType`*.
3232

3333
## Return value
3434

35-
On successful completion, **`_CrtSetReportMode`** returns the previous report mode or modes for the report type specified in *`reportType`*. If an invalid value is passed in as *`reportType`* or an invalid mode is specified for *`reportMode`*, **`_CrtSetReportMode`** invokes the invalid parameter handler as described in [Parameter validation](../parameter-validation.md). If execution is allowed to continue, this function sets `errno` to `EINVAL` and returns -1. For more information, see [`errno, _doserrno, _sys_errlist, and _sys_nerr`](../errno-doserrno-sys-errlist-and-sys-nerr.md).
35+
On successful completion, **`_CrtSetReportMode`** returns the previous report mode or modes for the report type specified in *`reportType`*. If an invalid value is passed in as *`reportType`* or an invalid mode is specified for *`reportMode`*, **`_CrtSetReportMode`** invokes the invalid parameter handler as described in [Parameter validation](../parameter-validation.md). If execution is allowed to continue, this function sets `errno` to `EINVAL` and returns -1. For more information, see [`errno`, `_doserrno`, `_sys_errlist`, and `_sys_nerr`](../errno-doserrno-sys-errlist-and-sys-nerr.md).
3636

3737
## Remarks
3838

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ When the specified process has successfully completed, returns the handle of the
4747
|`ECHILD`|No specified process exists, *`procHandle`* is invalid, or the call to the [`GetExitCodeProcess`](/windows/win32/api/processthreadsapi/nf-processthreadsapi-getexitcodeprocess) or [`WaitForSingleObject`](/windows/win32/api/synchapi/nf-synchapi-waitforsingleobject) API failed.|
4848
|`EINVAL`|*`action`* is invalid.|
4949

50-
For more information about these and other return codes, see [`errno, _doserrno, _sys_errlist, and _sys_nerr`](../errno-doserrno-sys-errlist-and-sys-nerr.md).
50+
For more information about these and other return codes, see [`errno`, `_doserrno`, `_sys_errlist`, and `_sys_nerr`](../errno-doserrno-sys-errlist-and-sys-nerr.md).
5151

5252
## Remarks
5353

docs/c-runtime-library/reference/exp-expf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,5 @@ exp( 2.302585 ) = 10.000000
9393
## See also
9494
9595
[Math and floating-point support](../floating-point-support.md)\
96-
[`log, logf, log10, log10f`](log-logf-log10-log10f.md)\
96+
[`log`, `logf`, `log10`, `log10f`](log-logf-log10-log10f.md)\
9797
[`_CIexp`](../ciexp.md)

docs/c-runtime-library/reference/fabs-fabsf-fabsl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,5 @@ See the example for [`abs`](abs-labs-llabs-abs64.md).
7272
## See also
7373
7474
[Math and floating-point support](../floating-point-support.md)\
75-
[`abs, labs, llabs, _abs64`](abs-labs-llabs-abs64.md)\
75+
[`abs`, `labs`, `llabs`, `_abs64`](abs-labs-llabs-abs64.md)\
7676
[`_cabs`](cabs.md)

docs/c-runtime-library/reference/fmod-fmodf.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ The remainder of -10.00 / 3.00 is -1.000000
9393
## See also
9494

9595
[Math and floating-point support](../floating-point-support.md)\
96-
[`ceil, ceilf, ceill`](ceil-ceilf-ceill.md)\
97-
[`fabs, fabsf, fabsl`](fabs-fabsf-fabsl.md)\
98-
[`floor, floorf, floorl`](floor-floorf-floorl.md)\
96+
[`ceil`, `ceilf`, `ceill`](ceil-ceilf-ceill.md)\
97+
[`fabs`, `fabsf`, `fabsl`](fabs-fabsf-fabsl.md)\
98+
[`floor`, `floorf`, `floorl`](floor-floorf-floorl.md)\
9999
[`_CIfmod`](../cifmod.md)

docs/c-runtime-library/reference/freopen-s-wfreopen-s.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ helpviewer_keywords: ["_tfreopen_s function", "_wfreopen_s function", "file poin
1313

1414
Closes the file currently associated with `oldStream` and reassigns `stream` to the file specified by `fileName`.
1515

16-
These versions of [`freopen, _wfreopen`](freopen-wfreopen.md) have security enhancements, as described in [Security features in the CRT](../security-features-in-the-crt.md).
16+
These versions of [`freopen`, `_wfreopen`](freopen-wfreopen.md) have security enhancements, as described in [Security features in the CRT](../security-features-in-the-crt.md).
1717

1818
## Syntax
1919

@@ -51,7 +51,7 @@ The stream to reopen. It's flushed and any files associated with it are closed.
5151

5252
Zero on success; otherwise an error code. If an error occurs, the original file is closed, and `NULL` is written to *`stream`* unless *`stream`* is also `NULL`
5353

54-
For more information about error codes, see [`errno, _doserrno, _sys_errlist, and _sys_nerr`](../errno-doserrno-sys-errlist-and-sys-nerr.md).
54+
For more information about error codes, see [`errno`, `_doserrno`, `_sys_errlist`, and `_sys_nerr`](../errno-doserrno-sys-errlist-and-sys-nerr.md).
5555

5656
## Remarks
5757

@@ -149,10 +149,10 @@ This will go to the file 'freopen.out'
149149
## See also
150150

151151
[`Stream I/O`](../stream-i-o.md)\
152-
[`freopen, _wfreopen`](freopen-wfreopen.md)\
153-
[`fclose, _fcloseall`](fclose-fcloseall.md)\
154-
[`_fdopen, _wfdopen`](fdopen-wfdopen.md)\
152+
[`freopen`, `_wfreopen`](freopen-wfreopen.md)\
153+
[`fclose`, `_fcloseall`](fclose-fcloseall.md)\
154+
[`_fdopen`, `_wfdopen`](fdopen-wfdopen.md)\
155155
[`_fileno`](fileno.md)\
156-
[`fopen, _wfopen`](fopen-wfopen.md)\
157-
[`_open, _wopen`](open-wopen.md)\
156+
[`fopen`, `_wfopen`](fopen-wfopen.md)\
157+
[`_open`, `_wopen`](open-wopen.md)\
158158
[`_setmode`](setmode.md)

docs/c-runtime-library/reference/freopen-wfreopen.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ helpviewer_keywords: ["_wfreopen function", "file pointers [C++], reassigning",
1111
---
1212
# `freopen`, `_wfreopen`
1313

14-
Reassigns a file pointer. More secure versions of the functions are available; see [`freopen_s, _wfreopen_s`](freopen-s-wfreopen-s.md).
14+
Reassigns a file pointer. More secure versions of the functions are available; see [`freopen_s`, `_wfreopen_s`](freopen-s-wfreopen-s.md).
1515

1616
## Syntax
1717

@@ -47,7 +47,7 @@ For more information on error codes, see [`errno`, `_doserrno`, `_sys_errlist`,
4747

4848
## Remarks
4949

50-
More secure versions of these functions exist, see [`freopen_s, _wfreopen_s`](freopen-s-wfreopen-s.md).
50+
More secure versions of these functions exist, see [`freopen_s`, `_wfreopen_s`](freopen-s-wfreopen-s.md).
5151

5252
The **`freopen`** function closes the file currently associated with *`stream`* and reassigns *`stream`* to the file specified by *`path`*. **`_wfreopen`** is a wide-character version of **`_freopen`**; the *`path`* and *`mode`* arguments to **`_wfreopen`** are wide-character strings. **`_wfreopen`** and **`_freopen`** behave identically otherwise.
5353

@@ -136,9 +136,9 @@ This will go to the file 'freopen.out'
136136
## See also
137137

138138
[Stream I/O](../stream-i-o.md)\
139-
[`fclose, _fcloseall`](fclose-fcloseall.md)\
140-
[`_fdopen, _wfdopen`](fdopen-wfdopen.md)\
139+
[`fclose`, `_fcloseall`](fclose-fcloseall.md)\
140+
[`_fdopen`, `_wfdopen`](fdopen-wfdopen.md)\
141141
[`_fileno`](fileno.md)\
142-
[`fopen, _wfopen`](fopen-wfopen.md)\
143-
[`_open, _wopen`](open-wopen.md)\
142+
[`fopen`, `_wfopen`](fopen-wfopen.md)\
143+
[`_open`, `_wopen`](open-wopen.md)\
144144
[`_setmode`](setmode.md)\

docs/c-runtime-library/reference/strncat-strncat-l-wcsncat-wcsncat-l-mbsncat-mbsncat-l.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -173,15 +173,15 @@ You can see that `BadAppend` caused a buffer overrun.
173173
## See also
174174

175175
[String manipulation](../string-manipulation-crt.md)\
176-
[`_mbsnbcat, _mbsnbcat_l`](mbsnbcat-mbsnbcat-l.md)\
177-
[`strcat, wcscat, _mbscat`](strcat-wcscat-mbscat.md)\
178-
[`strcmp, wcscmp, _mbscmp`](strcmp-wcscmp-mbscmp.md)\
179-
[`strcpy, wcscpy, _mbscpy`](strcpy-wcscpy-mbscpy.md)\
180-
[`strncmp, wcsncmp, _mbsncmp, _mbsncmp_l`](strncmp-wcsncmp-mbsncmp-mbsncmp-l.md)\
181-
[`strncpy, _strncpy_l, wcsncpy, _wcsncpy_l, _mbsncpy, _mbsncpy_l`](strncpy-strncpy-l-wcsncpy-wcsncpy-l-mbsncpy-mbsncpy-l.md)\
182-
[`_strnicmp, _wcsnicmp, _mbsnicmp, _strnicmp_l, _wcsnicmp_l, _mbsnicmp_l`](strnicmp-wcsnicmp-mbsnicmp-strnicmp-l-wcsnicmp-l-mbsnicmp-l.md)\
183-
[`strrchr, wcsrchr, _mbsrchr, _mbsrchr_l`](strrchr-wcsrchr-mbsrchr-mbsrchr-l.md)\
184-
[`_strset, _strset_l, _wcsset, _wcsset_l, _mbsset, _mbsset_l`](strset-strset-l-wcsset-wcsset-l-mbsset-mbsset-l.md)\
185-
[`strspn, wcsspn, _mbsspn, _mbsspn_l`](strspn-wcsspn-mbsspn-mbsspn-l.md)\
176+
[`_mbsnbcat`, `_mbsnbcat_l`](mbsnbcat-mbsnbcat-l.md)\
177+
[`strcat`, `wcscat`, `_mbscat`](strcat-wcscat-mbscat.md)\
178+
[`strcmp`, `wcscmp`, `_mbscmp`](strcmp-wcscmp-mbscmp.md)\
179+
[`strcpy`, `wcscpy`, `_mbscpy`](strcpy-wcscpy-mbscpy.md)\
180+
[`strncmp`, `wcsncmp`, `_mbsncmp`, `_mbsncmp_l`](strncmp-wcsncmp-mbsncmp-mbsncmp-l.md)\
181+
[`strncpy`, `_strncpy_l`, `wcsncpy`, `_wcsncpy_l`, `_mbsncpy`, `_mbsncpy_l`](strncpy-strncpy-l-wcsncpy-wcsncpy-l-mbsncpy-mbsncpy-l.md)\
182+
[`_strnicmp`, `_wcsnicmp`, `_mbsnicmp`, `_strnicmp_l`, `_wcsnicmp_l`, `_mbsnicmp_l`](strnicmp-wcsnicmp-mbsnicmp-strnicmp-l-wcsnicmp-l-mbsnicmp-l.md)\
183+
[`strrchr`, `wcsrchr`, `_mbsrchr`, `_mbsrchr_l`](strrchr-wcsrchr-mbsrchr-mbsrchr-l.md)\
184+
[`_strset`, `_strset_l`, `_wcsset`, `_wcsset_l`, `_mbsset`, `_mbsset_l`](strset-strset-l-wcsset-wcsset-l-mbsset-mbsset-l.md)\
185+
[`strspn`, `wcsspn`, `_mbsspn`, `_mbsspn_l`](strspn-wcsspn-mbsspn-mbsspn-l.md)\
186186
[Locale](../locale.md)\
187187
[Interpretation of multibyte-character sequences](../interpretation-of-multibyte-character-sequences.md)\

0 commit comments

Comments
 (0)