audio_demo/log/local_time.h
2025-02-14 08:58:27 +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