Skip to content

Repo sync for protected CLA branch #4236

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Oct 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions docs/atl-mfc-shared/codesnippet/CPP/cstringt-class_2.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// OEM character 252 on most IBM-compatible computers in
// Western countries/regions is superscript n, as in 2^n.
// many countries/regions is superscript n, as in 2^n.
// Converting it to the ANSI English charset results in a
// normal character 'n', which is the closest possible
// representation.
Expand All @@ -14,4 +14,4 @@
// the character's value truly was.
str.AnsiToOem();
ASSERT(str[0] != 252);
ASSERT(str[0] == 'n');
ASSERT(str[0] == 'n');
2 changes: 1 addition & 1 deletion docs/c-runtime-library/32-bit-windows-time-date-formats.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ f1_keywords: ["vc.time"]
helpviewer_keywords: ["32-bit Windows"]
ms.assetid: ef1589db-84d7-4b24-8799-7c7a22cfe2bf
---
# 32-Bit Windows Time/Date Formats
# 32-Bit Windows time/date formats

The file time and the date are stored individually, using unsigned integers as bit fields. File time and date are packed as follows:

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/abnormal-termination.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["_abnormal_termination"]
helpviewer_keywords: ["_abnormal_termination"]
ms.assetid: 952970a4-9586-4c3d-807a-db729448c91c
---
# _abnormal_termination
# `_abnormal_termination`

Indicates whether the **`__finally`** block of a [try-finally statement](../cpp/try-finally-statement.md) is entered while the system is executing an internal list of termination handlers.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/acmdln-tcmdln-wcmdln.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["_acmdln", "acmdln", "_wcmdln", "wcmdln", "_tcmdln", "tcmdln"]
helpviewer_keywords: ["_wcmdln global variable", "wcmdln global variable", "_acmdln global variable", "_tcmdln global variable", "tcmdln global variable", "acmdln global variable"]
ms.assetid: 4fc0a6a0-3f93-420a-a19f-5276061ba539
---
# _acmdln, _tcmdln, _wcmdln
# `_acmdln`, `_tcmdln`, `_wcmdln`

Internal CRT global variable. The command line.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/argc-argv-wargv.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ helpviewer_keywords: ["__argv", "__wargv", "__argc"]
ms.assetid: 17001b0a-04ad-4762-b3a6-c54847f02d7c
no-loc: [__argc, __argv, __wargv, main, wmain]
---
# __argc, __argv, __wargv
# `__argc`, `__argv`, `__wargv`

The `__argc` global variable is a count of the number of command-line arguments passed to the program. `__argv` is a pointer to an array of single-byte-character or multi-byte-character strings that contain the program arguments, and `__wargv` is a pointer to an array of wide-character strings that contain the program arguments. These global variables provide the arguments to `main` or `wmain`.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/bufsiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ f1_keywords: ["BUFSIZ"]
helpviewer_keywords: ["BUFSIZ constant"]
ms.assetid: 94ac04a3-d154-476b-bd89-eefbc7b949ae
---
# BUFSIZ
# `BUFSIZ`

## Syntax

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/cgets-cgetws.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["cgetws", "_cgetws", "_cgets"]
helpviewer_keywords: ["_cgetws function", "strings [C++], getting from console", "console, getting strings from", "_cgets function", "cgetws function", "cgets function"]
ms.assetid: 4d5e134a-58c3-4f62-befd-5d235b0212f4
---
# _cgets, _cgetws
# `_cgets`, `_cgetws`

Gets a character string from the console. More secure versions of these functions are available; see [`_cgets_s`, `_cgetws_s`](./reference/cgets-s-cgetws-s.md).

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/ciatan.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["_CIatan", "CIatan"]
helpviewer_keywords: ["CIatan intrinsic", "_CIatan intrinsic"]
ms.assetid: 3baa0429-fe46-4bab-8b00-868e2186dc8c
---
# _CIatan
# `_CIatan`

Calculates the arctangent of the top value on the stack.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/ciatan2.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["CIatan2", "_CIatan2"]
helpviewer_keywords: ["_CIatan2 intrinsic", "CIatan2 intrinsic"]
ms.assetid: 31f8cc78-b79f-4576-b73b-8add18e08680
---
# _CIatan2
# `_CIatan2`

Calculates the arctangent of *`x`* / *`y`* where *`x`* and *`y`* are values on the top of the stack.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/cicos.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["CIcos", "_CIcos"]
helpviewer_keywords: ["_CIcos intrinsic", "CIcos intrinsic"]
ms.assetid: 6fc203fb-66f3-4ead-9784-f85833c26f1b
---
# _CIcos
# `_CIcos`

Calculates the cosine of the top value in the floating-point stack.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/ciexp.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["CIexp", "_CIexp"]
helpviewer_keywords: ["CIexp intrinsic", "_CIexp intrinsic"]
ms.assetid: f8a3e3b7-fa57-41a3-9983-6c81914cbb55
---
# _CIexp
# `_CIexp`

Calculates the exponential of the top value on the stack.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/cifmod.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["_CIfmod", "CIfmod"]
helpviewer_keywords: ["CIfmod intrinsic", "_CIfmod intrinsic"]
ms.assetid: 7c050653-7ec6-4810-b3a7-7a0057ea65ed
---
# _CIfmod
# `_CIfmod`

Calculates the floating-point remainder of the top two values on the stack.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/cilog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["_CIlog", "CIlog"]
helpviewer_keywords: ["_CIlog intrinsic", "CIlog intrinsic"]
ms.assetid: 23503854-ddaa-4fe0-a4a3-7fbb3a43bdec
---
# _CIlog
# `_CIlog`

Calculates the natural logarithm of the top value in the stack.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/cilog10.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["CIlog10", "_CIlog10"]
helpviewer_keywords: ["_CIlog10 intrinsic", "CIlog10 intrinsic"]
ms.assetid: 05d7fcaa-3cff-4cc5-8d44-015e7cacba24
---
# _CIlog10
# `_CIlog10`

Performs a `log10` operation on the top value in the stack.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/cipow.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["CIpow", "_CIpow"]
helpviewer_keywords: ["CIpow intrinsic", "_CIpow intrinsic"]
ms.assetid: 477aaf0c-ac58-4252-89dd-9f3e35d47536
---
# _CIpow
# `_CIpow`

Calculates *`x`* raised to the *`y`* power based on the top values in the stack.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/cisin.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["CIsin", "_CIsin"]
helpviewer_keywords: ["_CIsin intrinsic", "CIsin intrinsic"]
ms.assetid: f215f39a-2341-4f1c-ba8e-cb522451ceb2
---
# _CIsin
# `_CIsin`

Calculates the sine of the top value in the floating-point stack.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/cisqrt.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["_CIsqrt", "CIsqrt"]
helpviewer_keywords: ["CIsqrt intrinsic", "_CIsqrt intrinsic"]
ms.assetid: 663548ea-398c-48ee-8397-a787c6ebb937
---
# _CIsqrt
# `_CIsqrt`

Calculates the square root of the top value in the stack.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/citan.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["_CItan", "CItan"]
helpviewer_keywords: ["CItan intrinsic", "_CItan intrinsic"]
ms.assetid: d1ea3113-50a2-45a6-b6bc-680fcdcc0928
---
# _CItan
# `_CItan`

Calculates the tangent of the top value on the floating-point stack.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/clocks-per-sec-clk-tck.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ f1_keywords: ["CLOCKS_PER_SEC", "CLK_TCK"]
helpviewer_keywords: ["CLOCKS_PER_SEC", "CLK_TCK constant"]
ms.assetid: bc285106-383d-44cb-91bf-276ad7de57bf
---
# CLOCKS_PER_SEC, CLK_TCK
# `CLOCKS_PER_SEC`, `CLK_TCK`

## Syntax

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/country-region-strings.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: "Learn more about: Country/Region Strings"
ms.date: "1/29/2020"
helpviewer_keywords: ["country/region strings"]
---
# Country/Region Strings
# Country/region strings

Country and region strings can be combined with a language string to create a locale specification for the `setlocale`, `_wsetlocale`, `_create_locale`, and `_wcreate_locale` functions.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/crt-disable-perfcrit-locks.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ f1_keywords: ["_CRT_DISABLE_PERFCRIT_LOCKS", "CRT_DISABLE_PERFCRIT_LOCKS"]
helpviewer_keywords: ["CRT_DISABLE_PERFCRIT_LOCKS constant", "_CRT_DISABLE_PERFCRIT_LOCKS constant"]
ms.assetid: 36cc2d86-cdb1-4b2b-a03c-c0d3818e7c6f
---
# _CRT_DISABLE_PERFCRIT_LOCKS
# `_CRT_DISABLE_PERFCRIT_LOCKS`

Disables performance-critical locking in I/O operations.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/crt-initialization.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ms.date: 08/02/2021
helpviewer_keywords: ["CRT initialization [C++]"]
ms.assetid: e7979813-1856-4848-9639-f29c86b74ad7
---
# CRT Initialization
# CRT initialization

This article describes how the CRT initializes global state in native code.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/crtdbg-map-alloc.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ f1_keywords: ["CRTDBG_MAP_ALLOC", "_CRTDBG_MAP_ALLOC"]
helpviewer_keywords: ["_CRTDBG_MAP_ALLOC macro", "memory allocation, in debug builds", "CRTDBG_MAP_ALLOC macro"]
ms.assetid: 435242b8-caea-4063-b765-4a608200312b
---
# _CRTDBG_MAP_ALLOC
# `_CRTDBG_MAP_ALLOC`

When the **_CRTDBG_MAP_ALLOC** flag is defined in the debug version of an application, the base versions of the heap functions are directly mapped to their debug versions. The flag is used in Crtdbg.h to do the mapping. This flag is only available when the [`_DEBUG`](./debug.md) flag has been defined in the application.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/crtdbgflag.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ f1_keywords: ["_crtDbgFlag", "crtDbgFlag"]
helpviewer_keywords: ["memory allocation, tracking flag", "crtDbgFlag constant", "_crtDbgFlag constant", "debug heap, tracking memory on", "debug heap, control flags", "enable memory allocation tracking flag", "memory, tracking on the debug heap"]
ms.assetid: 9e7adb47-8ab9-4e19-81d5-e2f237979973
---
# _crtDbgFlag
# `_crtDbgFlag`

The **_crtDbgFlag** flag consists of five bit-fields that control how memory allocations on the debug version of the heap are tracked, verified, reported, and dumped. The bit fields of the flag are set using the [`_CrtSetDbgFlag`](./reference/crtsetdbgflag.md) function. This flag and its bit fields are declared in Crtdbg.h. This flag is only available when the [`_DEBUG`](./debug.md) flag has been defined in the application.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/crtlcmapstringw.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["__crtLCMapStringW"]
helpviewer_keywords: ["__crtLCMapStringW"]
ms.assetid: 45b4ac0e-438c-4fa3-b4d1-34195f4467d9
---
# __crtLCMapStringW
# `__crtLCMapStringW`

Maps one character string to another, performing a specified locale-dependent transformation. This function can also be used to generate a sort key for the input string.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/cxxframehandler.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["__CxxFrameHandler"]
helpviewer_keywords: ["__CxxFrameHandler"]
ms.assetid: b79ac97f-425a-42ae-9b91-8beaef935333
---
# __CxxFrameHandler
# `__CxxFrameHandler`

Internal CRT function. Used by the CRT to handle structured exception frames.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ f1_keywords: ["tzname", "_timezone", "timezone", "_daylight", "_tzname", "daylig
helpviewer_keywords: ["time zones", "time adjustments", "timezone variables", "_tzname function", "_daylight function", "_timezone function", "daylight function", "local time adjustments", "timezone function", "tzname function", "time-zone variables"]
ms.assetid: d06c7292-6b99-4aba-b284-16a96570c856
---
# _daylight, _dstbias, _timezone, and _tzname
# `_daylight`, `_dstbias`, `_timezone`, and `_tzname`

`_daylight`, `_dstbias`, `_timezone`, and `_tzname` are used in some time and date routines to make local-time adjustments. These global variables have been deprecated for the more secure functional versions, which should be used in place of the global variables.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/debug.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ms.date: "11/04/2016"
helpviewer_keywords: ["DEBUG macro", "_DEBUG macro"]
ms.assetid: a9901568-4846-4731-a404-399d947e2e7a
---
# _DEBUG
# `_DEBUG`

The compiler defines `_DEBUG` when you specify the /MTd or /MDd option. These options specify debug versions of the C run-time library.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/delete-operator-crt.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ f1_keywords: ["delete[]"]
helpviewer_keywords: ["operator delete[]", "vector delete"]
ms.assetid: e91bd0df-3815-40ca-950a-67b470518aed
---
# operator delete(CRT)
# `operator delete` (CRT)

Beginning in Visual Studio 2013, the Universal C Runtime (UCRT) no longer supports the C++-specific `operator new` and `operator delete` functions. These functions are now part of the C++ Standard Library. For more information, see [`new` and `delete` operators](../cpp/new-and-delete-operators.md) and [`delete` operator](../cpp/delete-operator-cpp.md) in the C++ Language Reference.
2 changes: 1 addition & 1 deletion docs/c-runtime-library/dllonexit.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["__dllonexit"]
helpviewer_keywords: ["__dllonexit"]
ms.assetid: 708f2ceb-f95c-46b0-a58d-d68b3fa36f12
---
# __dllonexit
# `__dllonexit`

Registers a routine to be called at exit time.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/environ-wenviron.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ f1_keywords: ["environ", "wenviron", "_wenviron", "_environ"]
helpviewer_keywords: ["environ function", "_environ function", "_wenviron function", "process environment", "wenviron function"]
ms.assetid: 7e639962-6536-47cd-8095-0cbe44a56e03
---
# _environ, _wenviron
# `_environ`, `_wenviron`

The `_environ` variable is a pointer to an array of pointers to the multibyte-character strings that constitute the process environment. This global variable has been deprecated for the more secure functional versions [`getenv_s`, `_wgetenv_s`](./reference/getenv-s-wgetenv-s.md) and [`_putenv_s`, `_wputenv_s`](./reference/putenv-s-wputenv-s.md), which should be used in place of the global variable. `_environ` is declared in Stdlib.h.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/eof-weof.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ms.date: "11/04/2016"
helpviewer_keywords: ["EOF function", "WEOF function", "end of file"]
ms.assetid: a7150563-cdae-4cdf-9798-ad509990e505
---
# EOF, WEOF
# `EOF`, `WEOF`

## Syntax

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/except-handler3.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["_except_handler3", "except_handler3"]
helpviewer_keywords: ["_except_handler3 function", "except_handler3 function"]
ms.assetid: b0c64898-0ae5-48b7-9724-80135a0813e2
---
# _except_handler3
# `_except_handler3`

Internal CRT function. Used by a framework to find the appropriate exception handler to process the current exception.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["_execute_onexit_table", "process/_execute_onexit_table", "_initia
helpviewer_keywords: ["_execute_onexit_table function", "_initialize_onexit_table function", "_register_onexit_function function"]
ms.assetid: ad9e4149-d4ad-4fdf-aaaf-cf786fcb4473
---
# _execute_onexit_table, _initialize_onexit_table, _register_onexit_function
# `_execute_onexit_table`, `_initialize_onexit_table`, `_register_onexit_function`

Manages the routines to be called at exit time.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/filename-max.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ f1_keywords: ["FILENAME_MAX"]
helpviewer_keywords: ["FILENAME_MAX constant"]
ms.assetid: fe368d24-3f31-42d6-859c-cbd84f446ee5
---
# FILENAME_MAX
# `FILENAME_MAX`

The maximum permissible length for a `filename` string buffer size.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/fmode.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ f1_keywords: ["fmode", "_fmode"]
helpviewer_keywords: ["file translation [C++], default mode", "fmode function", "_fmode function"]
ms.assetid: ac6df9eb-e5cc-4c54-aff3-373c21983118
---
# _fmode
# `_fmode`

The `_fmode` variable sets the default file-translation mode for text or binary translation. This global variable has been deprecated for the more secure functional versions [`_get_fmode`](./reference/get-fmode.md) and [`_set_fmode`](./reference/set-fmode.md), which should be used in place of the global variable. It's declared in Stdlib.h as follows.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/fopen-max-sys-open.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ f1_keywords: ["_SYS_OPEN", "FOPEN_MAX"]
helpviewer_keywords: ["SYS_OPEN constant", "_SYS_OPEN constant", "FOPEN_MAX constant", "files [C++], maximum open", "maximum number of files", "open files, maximum"]
ms.assetid: 39cf5196-250a-459d-ae90-ce3d99f79039
---
# FOPEN_MAX, _SYS_OPEN
# `FOPEN_MAX`, `_SYS_OPEN`

## Syntax

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/freeentry-usedentry.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ f1_keywords: ["USEDENTRY", "_USEDENTRY", "_FREEENTRY", "FREEENTRY"]
helpviewer_keywords: ["_USEDENTRY constant", "_FREEENTRY constant", "FREEENTRY constant", "USEDENTRY constant"]
ms.assetid: 26f658e6-6846-4a4e-9984-262cfe392770
---
# _FREEENTRY, _USEDENTRY
# `_FREEENTRY`, `_USEDENTRY`

## Syntax

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/fseek-lseek-constants.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ f1_keywords: ["SEEK_END", "SEEK_SET", "SEEK_CUR"]
helpviewer_keywords: ["SEEK_SET constant", "SEEK_END constant", "SEEK_CUR constant"]
ms.assetid: 9deeb13e-5aa3-4c33-80d8-721c80a4de9d
---
# fseek, _lseek constants
# `fseek`, `_lseek` constants

## Syntax

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/get-output-format.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["get_output_format", "_get_output_format"]
helpviewer_keywords: ["output formatting", "get_output_format function", "_get_output_format function"]
ms.assetid: 0ce42f3b-3479-41c4-bcbf-1d21f7ee37e7
---
# _get_output_format
# `_get_output_format`

Gets the current value of the output format flag.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/getmainargs-wgetmainargs.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["__wgetmainargs", "__getmainargs"]
helpviewer_keywords: ["__wgetmainargs", "__getmainargs"]
ms.assetid: f72f54eb-9509-4bdf-8752-40fc49055439
---
# __getmainargs, __wgetmainargs
# `__getmainargs`, `__wgetmainargs`

Invokes command-line parsing and copies the arguments to `main()` back through the passed pointers.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/heap-maxreq.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ f1_keywords: ["HEAP_MAXREQ", "_HEAP_MAXREQ"]
helpviewer_keywords: ["HEAP_MAXREQ constants", "_HEAP_MAXREQ constants", "heap constants"]
ms.assetid: c2dbc2ea-35ad-45d8-b459-d76ba0089ff7
---
# _HEAP_MAXREQ
# `_HEAP_MAXREQ`

## Syntax

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/heapadd.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["heapadd", "_heapadd"]
helpviewer_keywords: ["_heapadd function", "memory, adding to heaps", "heaps, adding memory", "heapadd function"]
ms.assetid: 4d691fe2-2763-49f4-afb1-62738b7cd3ff
---
# _heapadd
# `_heapadd`

Adds memory to the heap.

Expand Down
2 changes: 1 addition & 1 deletion docs/c-runtime-library/heapset.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ f1_keywords: ["_heapset", "heapset"]
helpviewer_keywords: ["checking heap", "heapset function", "heaps, checking", "debugging [CRT], heap-related problems", "_heapset function"]
ms.assetid: 9667eeb0-55bc-4c19-af5f-d1fd0a142b3c
---
# _heapset
# `_heapset`

Checks heaps for minimal consistency and sets the free entries to a specified value.

Expand Down
Loading