mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-30 08:57:00 +02:00
14 lines
234 B
C++
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
|