1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-04 09:42:40 +02:00
vcmi/include/vstd/DateUtils.h

14 lines
234 B
C++
Raw Normal View History

2023-08-12 01:13:03 +02:00
#pragma once
VCMI_LIB_NAMESPACE_BEGIN
namespace vstd
{
2023-12-16 20:54:45 +02:00
DLL_LINKAGE std::string getFormattedDateTime(std::time_t dt, std::string format);
2023-08-23 01:47:55 +02:00
DLL_LINKAGE std::string getDateTimeISO8601Basic(std::time_t dt);
2023-08-12 01:13:03 +02:00
}
VCMI_LIB_NAMESPACE_END