local_time.h 285 B

123456789101112131415
  1. //
  2. // Created by alex on 2022/5/29.
  3. //
  4. #ifndef UTIL_LOCALTIME_H
  5. #define UTIL_LOCALTIME_H
  6. #include <time.h>
  7. namespace toolkit {
  8. void no_locks_localtime(struct tm *tmp, time_t t);
  9. void local_time_init();
  10. int get_daylight_active();
  11. } // namespace toolkit
  12. #endif // UTIL_LOCALTIME_H