16 lines
285 B
C++
16 lines
285 B
C++
//
|
|
// 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
|