aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/source/platform/linux-shared/Time.cpp
blob: 7a0d3d1c0ae1a6cbb784c2904d6248cc1efca72b (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 timegm(t);
}

void LocalTime(tm* t, std::time_t time)
{
    localtime_r(&time, t);
}

void GMTime(tm* t, std::time_t time)
{
    gmtime_r(&time, t);
}

} // namespace Time
} // namespace Aws