Skip to content

Commit d8f1fca

Browse files
author
Colin Robertson
committed
The final frontier of space issues
1 parent 6f0f46f commit d8f1fca

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1114
-1059
lines changed

docs/c-runtime-library/a-sample-generic-text-program.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.workload: ["cplusplus"]
1717

1818
The following program, GENTEXT.C, provides a more detailed illustration of the use of generic-text mappings defined in TCHAR.H:
1919

20-
```
20+
```C
2121
// GENTEXT.C
2222
// use of generic-text mappings defined in TCHAR.H
2323

@@ -53,12 +53,11 @@ int __cdecl _tmain(int argc, _TCHAR **argv, _TCHAR **envp)
5353
_tprintf(_T("'%s'\n"), _tcsrev(_tcsdup(str)));
5454
return 0;
5555
}
56-
5756
```
5857
5958
If `_MBCS` has been defined, GENTEXT.C maps to the following MBCS program:
6059
61-
```
60+
```C
6261
// crt_mbcsgtxt.c
6362
6463
/*
@@ -96,7 +95,7 @@ int __cdecl main(int argc, char **argv, char **envp)
9695

9796
If `_UNICODE` has been defined, GENTEXT.C maps to the following Unicode version of the program. For more information about using `wmain` in Unicode programs as a replacement for `main`, see [Using wmain](../c-language/using-wmain.md) in *C Language Reference*.
9897

99-
```
98+
```C
10099
// crt_unicgtxt.c
101100

102101
/*
@@ -134,7 +133,7 @@ int __cdecl wmain(int argc, wchar_t **argv, wchar_t **envp)
134133
135134
If neither `_MBCS` nor `_UNICODE` has been defined, GENTEXT.C maps to single-byte ASCII code, as follows:
136135
137-
```
136+
```C
138137
// crt_sbcsgtxt.c
139138
/*
140139
* Use of generic-text mappings defined in TCHAR.H
@@ -169,7 +168,7 @@ int __cdecl main(int argc, char **argv, char **envp)
169168
}
170169
```
171170

172-
**END Microsoft Specific**
171+
**END Microsoft Specific**
173172

174173
## See Also
175174

docs/c-runtime-library/ciatan.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ This version of the `atan` function has a specialized calling convention that th
3232
The resulting value is pushed onto the top of the stack.
3333

3434
## Requirements
35-
**Platform:** x86
35+
36+
**Platform:** x86
3637

3738
## See Also
3839

docs/c-runtime-library/ciatan2.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ This version of the `atan2` function has a specialized calling convention that t
3232
The resulting value is pushed onto the top of the stack.
3333

3434
## Requirements
35-
**Platform:** x86
35+
36+
**Platform:** x86
3637

3738
## See Also
3839

docs/c-runtime-library/ciexp.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ This version of the `exp` function has a specialized calling convention that the
3232
The resulting value is pushed onto the top of the stack.
3333

3434
## Requirements
35-
**Platform:** x86
35+
36+
**Platform:** x86
3637

3738
## See Also
3839

docs/c-runtime-library/cifmod.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ This version of the `fmod` function has a specialized calling convention that th
3232
The resulting value is pushed onto the top of the stack.
3333

3434
## Requirements
35-
**Platform:** x86
35+
36+
**Platform:** x86
3637

3738
## See Also
3839

docs/c-runtime-library/cilog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ This version of the `log` function has a specialized calling convention that the
3232
The resulting value is pushed onto the top of the stack.
3333

3434
## Requirements
35-
**Platform:** x86
35+
36+
**Platform:** x86
3637

3738
## See Also
3839

docs/c-runtime-library/cilog10.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ This version of the `log10` function has a specialized calling convention that t
3232
The resulting value is pushed onto the top of the stack.
3333

3434
## Requirements
35-
**Platform:** x86
35+
36+
**Platform:** x86
3637

3738
## See Also
3839

docs/c-runtime-library/cipow.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ This version of the `pow` function has a specialized calling convention that the
3232
The resulting value is pushed onto the top of the stack.
3333

3434
## Requirements
35-
**Platform:** x86
35+
36+
**Platform:** x86
3637

3738
## See Also
3839

docs/c-runtime-library/cisqrt.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ This version of the `sqrt` function has a specialized calling convention that th
3232
The resulting value is pushed onto the top of the stack.
3333

3434
## Requirements
35-
**Platform:** x86
35+
36+
**Platform:** x86
3637

3738
## See Also
3839

docs/c-runtime-library/exec-wexec-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ int main( int ac, char* av[] )
185185

186186
## Requirements
187187

188-
**Header:** process.h
188+
**Header:** process.h
189189

190190
## See Also
191191

0 commit comments

Comments
 (0)