Older/ToolKit/Util/local_time.h

16 lines
285 B
C
Raw Normal View History

2024-09-28 23:55:00 +08:00
//
// Created by alex on 2022/5/29.
//
#ifndef UTIL_LOCALTIME_H
#define UTIL_LOCALTIME_H
#include <time.h>
namespace toolkit {
void no_locks_localtime(struct tm *tmp, time_t t);
void local_time_init();
int get_daylight_active();
} // namespace toolkit
#endif // UTIL_LOCALTIME_H