summaryrefslogblamecommitdiffstats
path: root/src/common/time_zone.h
blob: 99cae6ef2f35ede8bd8ea5b2f0ff969f98164e5f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

                                                               


            
                 




                                         
                                               

                                                                          
                                                             

                               
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include <chrono>
#include <string>

namespace Common::TimeZone {

/// Gets the default timezone, i.e. "GMT"
[[nodiscard]] std::string GetDefaultTimeZone();

/// Gets the offset of the current timezone (from the default), in seconds
[[nodiscard]] std::chrono::seconds GetCurrentOffsetSeconds();

} // namespace Common::TimeZone