blob: ff9ca02a12b712036fdbba96c2a8bcf36381162a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright 2024 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <ctime>
#include <optional>
namespace Common
{
// Threadsafe and error-checking variant of std::localtime()
std::optional<std::tm> Localtime(std::time_t time);
} // Namespace Common
|