Skip to content

Commit ed9c1bc

Browse files
authored
Merge pull request #808 from corob-msft/cr-localtime-s
Address cpp-docs issue 229, syntax block update
2 parents 6e4a148 + 23a89b2 commit ed9c1bc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/c-runtime-library/reference/localtime-s-localtime32-s-localtime64-s.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ Converts a **time_t** time value to a **tm** structure, and corrects for the loc
2323

2424
```C
2525
errno_t localtime_s(
26-
struct tm* tmDest,
27-
const time_t *sourceTime
26+
struct tm* const tmDest,
27+
time_t const* const sourceTime
2828
);
2929
errno_t _localtime32_s(
3030
struct tm* tmDest,
31-
const time32_t *sourceTime
31+
__time32_t const* sourceTime
3232
);
3333
errno_t _localtime64_s(
3434
struct tm* tmDest,
35-
const _time64_t *sourceTime
35+
__time64_t const* sourceTime
3636
);
3737
```
3838

0 commit comments

Comments
 (0)