blob: e186d21c81c3d62e9f8e57d00b416b671a76dc94 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/core/platform/Time.h>
#include <time.h>
namespace Aws
{
namespace Time
{
time_t TimeGM(struct tm* const t)
{
return _mkgmtime(t);
}
void LocalTime(tm* t, std::time_t time)
{
localtime_s(t, &time);
}
void GMTime(tm* t, std::time_t time)
{
gmtime_s(t, &time);
}
} // namespace Time
} // namespace Aws
|