date.h 401 B

1234567891011121314151617
  1. // Copyright (c) Athena Dev Teams - Licensed under GNU GPL
  2. // For more information, see LICENCE in the main folder
  3. #ifndef _DATE_H_
  4. #define _DATE_H_
  5. #endif
  6. int date_get_year(void);
  7. int date_get_month(void);
  8. int date_get_day(void);
  9. int date_get_hour(void);
  10. int date_get_min(void);
  11. int date_get_sec(void);
  12. int is_day_of_sun(void);
  13. int is_day_of_moon(void);
  14. int is_day_of_star(void);