1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-26 22:57:00 +02:00
vcmi/include/vstd/DateUtils.h
2023-08-23 01:47:55 +02:00

14 lines
214 B
C++

#pragma once
VCMI_LIB_NAMESPACE_BEGIN
namespace vstd
{
DLL_LINKAGE std::string getFormattedDateTime(std::time_t dt);
DLL_LINKAGE std::string getDateTimeISO8601Basic(std::time_t dt);
}
VCMI_LIB_NAMESPACE_END