Skip to content

Commit ecd0976

Browse files
authored
Merge pull request MicrosoftDocs#2112 from nschonni/c-runtime-library-global-state.md
fix: c-runtime-library/global-state.md
2 parents 0538689 + 9d545b4 commit ecd0976

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/c-runtime-library/global-state.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ The UCRT's global state is not shared between applications and the OS. For examp
1414

1515
In the UCRT, functions that interact with global state have a "twin" function, prefixed with `_o_`. For example:
1616

17-
`setlocale()` affects global state specific to the app.
18-
`_o_setlocale()` affects global state shared by all OS components, but not apps.
17+
- `setlocale()` affects global state specific to the app.
18+
- `_o_setlocale()` affects global state shared by all OS components, but not apps.
1919

2020
The only difference between these "twin" functions is that when they read/write the global CRT state, the OS-specific versions (that is, the versions that start with `_o_`) use the OS copy of global state instead of the app's copy of global state.
2121

@@ -56,4 +56,4 @@ Global state affected by the separation of app and OS state includes:
5656

5757
## See also
5858

59-
[C Run-Time library reference](c-run-time-library-reference.md)
59+
[C Run-Time library reference](c-run-time-library-reference.md)

0 commit comments

Comments
 (0)