Skip to content

Commit 9f3980d

Browse files
TylerMSFTTylerMSFT
authored andcommitted
link fixes
1 parent 2172d58 commit 9f3980d

5 files changed

Lines changed: 11 additions & 6 deletions

File tree

docs/c-runtime-library/function-family-overviews.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This section lists C runtime library routines by function family.
1313
[_exec, _wexec](exec-wexec-functions.md)\
1414
Functions to load and execute a new process.
1515

16-
[Filename search functions](filename-search-functions)\
16+
[Filename search functions](filename-search-functions.md)\
1717
Functions to search for specified file names, and to close searches.
1818

1919
[Format specification field characters: `scanf` and `wscanf`](format-specification-fields-scanf-and-wscanf-functions.md)\
@@ -22,13 +22,13 @@ Describes the format specification fields for parsing an input stream for the en
2222
[Format specification syntax for `printf` and `wprintf`](format-specification-syntax-printf-and-wprintf-functions.md)\
2323
Describes the format string and arguments for `printf` and `wprintf`.
2424

25-
[`is`, `isw` functions](c-runtime-library/is-isw-routines.md)\
25+
[`is`, `isw` functions](is-isw-routines.md)\
2626
The functions for testing characters for things like whether they are uppercase, ASCII, numeric, punctuation, and so on.
2727

28-
[`_ismbb` functions](c-runtime-library/ismbb-routines)\
28+
[`_ismbb` functions](ismbb-routines.md)\
2929
The functions for testing an integer value for whether it represents an alpha character, blank character, a print character, and so on.
3030

31-
[`_ismbc` functions](c-runtime-library/ismbc-routines)\
31+
[`_ismbc` functions](ismbc-routines.md)\
3232
The functions for testing a multibyte character for whether it represents an alpha character, blank character, a print character, and so on.
3333

3434
[Positional parameter `printf` functions](printf-p-positional-parameters.md)\

docs/c-runtime-library/memory-allocation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ Use these routines to allocate, free, and reallocate memory.
1414

1515
|Routine|Use|
1616
|-------------|---------|
17-
|[_alloca](../c-runtime-library/reference/alloca.md), [_malloca](../c-runtime-library/reference/malloca.md)|Allocate memory from stack|
17+
|[_alloca](../c-runtime-library/reference/alloca.md), [_malloca](../c-runtime-library/reference/malloca.md)|Allocate memory from the stack|
1818
|[calloc](../c-runtime-library/reference/calloc.md)|Allocate storage for array, initializing every byte in allocated block to 0|
1919
|[_calloc_dbg](../c-runtime-library/reference/calloc-dbg.md)|Debug version of **calloc**; only available in the debug versions of the run-time libraries|
2020
|[operator delete, operator delete[]](../c-runtime-library/delete-operator-crt.md)|Free allocated block|
2121
|[_expand](../c-runtime-library/reference/expand.md)|Expand or shrink block of memory without moving it|
2222
|[_expand_dbg](../c-runtime-library/reference/expand-dbg.md)|Debug version of **_expand**; only available in the debug versions of the run-time libraries|
2323
|[free](../c-runtime-library/reference/free.md)|Free allocated block|
2424
|[_free_dbg](../c-runtime-library/reference/free-dbg.md)|Debug version of **free**; only available in the debug versions of the run-time libraries|
25-
|[_freea](../c-runtime-library/reference/freea.md)|Free allocated block from stack|
25+
|[_freea](../c-runtime-library/reference/freea.md)|Free allocated block from the stack|
2626
|[_get_heap_handle](../c-runtime-library/reference/get-heap-handle.md)|Get Win32 HANDLE of the CRT heap.|
2727
|[_heapadd](../c-runtime-library/heapadd.md)|Add memory to heap|
2828
|[_heapchk](../c-runtime-library/reference/heapchk.md)|Check heap for consistency|

docs/c-runtime-library/operator-delete-crt.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ topic_type: ["apiref"]
77
f1_keywords: ["delete"]
88
helpviewer_keywords: ["scalar delete", "operator delete"]
99
ms.assetid: bcd0066a-0022-45f5-af4c-9007c64a6b89
10+
ms.author: twhitney
11+
ROBOTS: NOINDEX
1012
---
1113
# operator delete (CRT)
1214

docs/c-runtime-library/operator-new-crt.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ api_type: ["DLLExport"]
66
topic_type: ["apiref"]
77
helpviewer_keywords: ["operator new", "scalar new"]
88
ms.assetid: 4ae51618-a4e6-4172-b324-b99d86d1bdca
9+
ms.author: twhitney
10+
ROBOTS: NOINDEX
911
---
1012
# operator new (CRT)
1113

docs/c-runtime-library/run-time-routines-by-category.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "Universal C runtime routines by category"
3+
description: "List of Microsoft Universal C runtime (UCRT) library routines by category."
34
ms.date: "04/06/2018"
45
helpviewer_keywords: ["routines, run-time", "functions [CRT], run-time", "categories, run-time functions", "functions [CRT]"]
56
ms.assetid: de6f5ac4-2226-4dad-be9f-deeb31138c9d

0 commit comments

Comments
 (0)