Skip to content

Commit 1696b5c

Browse files
TylerMSFTTylerMSFT
authored andcommitted
update link name
1 parent c075243 commit 1696b5c

25 files changed

+26
-26
lines changed

docs/c-runtime-library/c-run-time-library-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ Provides links to the C runtime library functions, organized by function family.
3737
[Language and country/region strings](locale-names-languages-and-country-region-strings.md)\
3838
Describes how to use the `setlocale` function to set the language and Country/Region strings.
3939

40-
[C runtime (CRT) and C++ Standard Library `.lib` files](crt-library-features.md)\
41-
Discusses the `.lib` files that make up the C runtime libraries and their associated compiler options and preprocessor directives.
40+
[C runtime (CRT) and C++ Standard Library (STL) `.lib` files]\(crt-library-features.md)\
41+
List of `.lib` files that make up the C runtime libraries and their associated compiler options and preprocessor directives.
4242

4343
## Related Sections
4444

docs/c-runtime-library/compatibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ Except as noted within the documentation for specific functions, the UCRT is com
3535
|[UNIX](../c-runtime-library/unix.md)|Provides guidelines for porting programs to UNIX.|
3636
|[Windows Platforms (CRT)](../c-runtime-library/windows-platforms-crt.md)|Lists the operating systems that are the CRT supports.|
3737
|[Backward Compatibility](../c-runtime-library/backward-compatibility.md)|Describes how to map old CRT names to the new ones.|
38-
|[CRT Library Features](../c-runtime-library/crt-library-features.md)|Provides an overview of the CRT library (.lib) files and the associated compiler options.|
38+
|[C runtime (CRT) and C++ Standard Library (STL) `.lib` files]\(../c-runtime-library/crt-library-features.md)|Provides an overview of the CRT library (.lib) files and the associated compiler options.|

docs/c-runtime-library/crt-initialization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ So, the CRT library uses both `__xc_a` and `__xc_z` to determine the start and e
9090

9191
## See also
9292

93-
[CRT Library Features](../c-runtime-library/crt-library-features.md)
93+
[C runtime (CRT) and C++ Standard Library (STL) `.lib` files]\(../c-runtime-library/crt-library-features.md)

docs/c-runtime-library/crt-library-features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.date: "3/5/2021"
55
ms.topic: "reference"
66
helpviewer_keywords: ["MSVCR71.dll", "libraries [C++], multithreaded", "library files, run-time", "LIBCMT.lib", "LIBCP.lib", "LIBCPMT.lib", "run-time libraries, C", "CRT, release versions", "MSVCP71.dll", "LIBC.lib", "libraries [C++]", "libraries [C++], run-time", "linking [C++], libraries"]
77
---
8-
# C runtime (CRT) and C++ Standard Library `.lib` files
8+
# C runtime (CRT) and C++ Standard Library (STL) `.lib` files
99

1010
This topic lists the Microsoft C runtime library `.lib` files that you can link against when you develop your application, and their associated compiler options and preprocessor directives.
1111

docs/c-runtime-library/direction-flag.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ The C Run-Time library functions, such as the string-manipulation and buffer-man
1616

1717
## See also
1818

19-
[CRT Library Features](../c-runtime-library/crt-library-features.md)
19+
[C runtime (CRT) and C++ Standard Library (STL) `.lib` files]\(../c-runtime-library/crt-library-features.md)

docs/c-runtime-library/inp-inpw-inpd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ For more compatibility information, see [Compatibility](../c-runtime-library/com
6161

6262
## Libraries
6363

64-
All versions of the [C run-time libraries](../c-runtime-library/crt-library-features.md).
64+
All versions of the [C runtime (CRT) and C++ Standard Library (STL) `.lib` files]\(../c-runtime-library/crt-library-features.md).
6565

6666
## See also
6767

docs/c-runtime-library/link-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ CLR pure mode versions of these objects are deprecated in Visual Studio 2015 and
3232

3333
## See also
3434

35-
- [CRT Library Features](../c-runtime-library/crt-library-features.md)
35+
- [C runtime (CRT) and C++ Standard Library (STL) `.lib` files]\(../c-runtime-library/crt-library-features.md)

docs/c-runtime-library/multithreaded-libraries-performance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ The performance of the multithreaded libraries has been improved and is close to
2828

2929
## See also
3030

31-
[CRT Library Features](../c-runtime-library/crt-library-features.md)
31+
[C runtime (CRT) and C++ Standard Library (STL) `.lib` files]\(../c-runtime-library/crt-library-features.md)

docs/c-runtime-library/parameter-validation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ For more information on `errno`, see [errno, _doserrno, _sys_errlist, and _sys_n
2525
## See also
2626

2727
[Security Features in the CRT](../c-runtime-library/security-features-in-the-crt.md)\
28-
[CRT Library Features](../c-runtime-library/crt-library-features.md)
28+
[C runtime (CRT) and C++ Standard Library (STL) `.lib` files]\(../c-runtime-library/crt-library-features.md)

docs/c-runtime-library/potential-errors-passing-crt-objects-across-dll-boundaries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,4 @@ New MYLIB variable is: c:\mylib;c:\yourlib
123123

124124
## See also
125125

126-
[CRT Library Features](../c-runtime-library/crt-library-features.md)
126+
[C runtime (CRT) and C++ Standard Library (STL) `.lib` files]\(../c-runtime-library/crt-library-features.md)

docs/c-runtime-library/recommendations-for-choosing-between-functions-and-macros.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ If you need to choose between a function and a macro implementation of a library
3838
## See also
3939

4040
[Type-generic math](tgmath.md)\
41-
[CRT Library Features](../c-runtime-library/crt-library-features.md)
41+
[C runtime (CRT) and C++ Standard Library (STL) `.lib` files]\(../c-runtime-library/crt-library-features.md)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ For more information about heap state functions and the **_CrtMemState** structu
5959

6060
For more compatibility information, see [Compatibility](../../c-runtime-library/compatibility.md).
6161

62-
**Libraries:** Debug versions of [CRT Library Features](../../c-runtime-library/crt-library-features.md) only.
62+
**Libraries:** Debug versions of [CRT runtime libraries](../../c-runtime-library/crt-library-features.md) only.
6363

6464
## See also
6565

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ For more information about heap state functions and the **_CrtMemState** structu
4343

4444
For more compatibility information, see [Compatibility](../../c-runtime-library/compatibility.md).
4545

46-
**Libraries:** Debug versions of [CRT Library Features](../../c-runtime-library/crt-library-features.md) only.
46+
**Libraries:** Debug versions of [CRT runtime libraries](../../c-runtime-library/crt-library-features.md) only.
4747

4848
## See also
4949

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ In addition, the reporting mode or modes for each report type can be separately
8383
8484
For more compatibility information, see [Compatibility](../../c-runtime-library/compatibility.md).
8585
86-
**Libraries:** Debug versions of [CRT Library Features](../../c-runtime-library/crt-library-features.md) only.
86+
**Libraries:** Debug versions of [CRT runtime libraries](../../c-runtime-library/crt-library-features.md) only.
8787
8888
## See also
8989

docs/c-runtime-library/reference/fcvt-s.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ By default, this function's global state is scoped to the application. To change
9898

9999
For more compatibility information, see [Compatibility](../../c-runtime-library/compatibility.md).
100100

101-
**Libraries:** All versions of the [CRT Library Features](../../c-runtime-library/crt-library-features.md).
101+
**Libraries:** All versions of the [C runtime libraries](../../c-runtime-library/crt-library-features.md).
102102

103103
## Example
104104

docs/c-runtime-library/reference/qsort-s.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ By default, this function's global state is scoped to the application. To change
8484
8585
For additional compatibility information, see [Compatibility](../../c-runtime-library/compatibility.md).
8686
87-
**Libraries:** All versions of the [CRT Library Features](../../c-runtime-library/crt-library-features.md).
87+
**Libraries:** All versions of the [C runtime (CRT) and C++ Standard Library (STL) `.lib` files]\(../../c-runtime-library/crt-library-features.md).
8888
8989
## Example
9090

docs/c-runtime-library/reference/set-sse2-enable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,4 @@ SSE2 enabled.
9191

9292
## See also
9393

94-
[CRT Library Features](../../c-runtime-library/crt-library-features.md)<br/>
94+
[C runtime (CRT) and C++ Standard Library (STL) `.lib` files]\(../../c-runtime-library/crt-library-features.md)<br/>

docs/c-runtime-library/required-and-optional-header-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ The run-time library header files provide function declarations in the ANSI/ISO
2121

2222
## See also
2323

24-
[CRT Library Features](../c-runtime-library/crt-library-features.md)
24+
[C runtime (CRT) and C++ Standard Library (STL) `.lib` files]\(../c-runtime-library/crt-library-features.md)

docs/c-runtime-library/sal-annotations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ For more information about using SAL annotations in Visual Studio, see [Using SA
1414

1515
## See also
1616

17-
[CRT Library Features](../c-runtime-library/crt-library-features.md)
17+
[C runtime (CRT) and C++ Standard Library (STL) `.lib` files]\(../c-runtime-library/crt-library-features.md)

docs/c-runtime-library/secure-template-overloads.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@ strcpy_s(szBuf, "test"); // doesn't compile; change it to
8383
## See also
8484

8585
[Security Features in the CRT](../c-runtime-library/security-features-in-the-crt.md)<br/>
86-
[CRT Library Features](../c-runtime-library/crt-library-features.md)
86+
[C runtime (CRT) and C++ Standard Library (STL) `.lib` files]\(../c-runtime-library/crt-library-features.md)

docs/c-runtime-library/security-enhanced-versions-of-crt-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,4 @@ More secure versions of run-time library routines are available. For further inf
9393

9494
## See also
9595

96-
[CRT Library Features](../c-runtime-library/crt-library-features.md)
96+
[C runtime (CRT) and C++ Standard Library (STL) `.lib` files]\(../c-runtime-library/crt-library-features.md)

docs/c-runtime-library/security-features-in-the-crt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ Some of the security features include:
6464

6565
[Parameter Validation](../c-runtime-library/parameter-validation.md)<br/>
6666
[Secure Template Overloads](../c-runtime-library/secure-template-overloads.md)<br/>
67-
[CRT Library Features](../c-runtime-library/crt-library-features.md)
67+
[C runtime (CRT) and C++ Standard Library (STL) `.lib` files]\(../c-runtime-library/crt-library-features.md)

docs/c-runtime-library/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
href: ../c-runtime-library/global-state.md
6565
- name: Type-generic math
6666
href: ../c-runtime-library/tgmath.md
67-
- name: C runtime (CRT) and C++ Standard Library .lib files
67+
- name: C runtime (CRT) and C++ Standard Library (STL) .lib files
6868
href: ../c-runtime-library/crt-library-features.md
6969
- name: Universal C runtime routines by category
7070
expanded: false

docs/c-runtime-library/type-checking-crt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ The compiler performs the same limited type checking on the wide-character count
2424

2525
## See also
2626

27-
[CRT Library Features](../c-runtime-library/crt-library-features.md)
27+
[C runtime (CRT) and C++ Standard Library (STL) `.lib` files]\(../c-runtime-library/crt-library-features.md)

docs/standard-library/cpp-standard-library-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ helpviewer_keywords: ["C++ Standard Library, reference", "C++ Standard Library",
99

1010
A C++ program can call on a large number of functions from this conforming implementation of the C++ Standard Library. These functions perform services such as input and output and provide efficient implementations of frequently used operations.
1111

12-
For more information about linking with the appropriate Visual C++ runtime `.lib` file, see [C runtime (CRT) and C++ Standard Library .`lib` files](../c-runtime-library/crt-library-features.md).
12+
For more information about linking with the appropriate Visual C++ runtime `.lib` file, see [C runtime (CRT) and C++ Standard Library (STL) `.lib` files](../c-runtime-library/crt-library-features.md).
1313

1414
## In this section
1515

0 commit comments

Comments
 (0)