1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-30 08:57:00 +02:00
vcmi/include/vstd/DateUtils.h
2023-12-16 19:54:45 +01:00

14 lines
234 B
C++

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