Older/ToolKit/Util/local_time.h
amass 9de3af15eb
All checks were successful
Deploy / PullDocker (push) Successful in 12s
Deploy / Build (push) Successful in 1m51s
add ZLMediaKit code for learning.
2024-09-28 23:55:00 +08:00

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