Skip to content

Commit 90c300b

Browse files
authored
Merge pull request MicrosoftDocs#3435 from MicrosoftDocs/master
3/09/2021 AM Publish
2 parents 6ed44d9 + 8e9f6c3 commit 90c300b

24 files changed

+68
-70
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/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)

0 commit comments

Comments
 (0)