telpo test github
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 line
341B

  1. #include "study.h"
  2. uint8_t g_class;
  3. void study_set_class(uint8_t class)
  4. {
  5. g_class = class;
  6. }
  7. uint8_t study_get_class(void)
  8. {
  9. return g_class;
  10. }
  11. uint8_t study_homework(void)
  12. {
  13. }
  14. uint8_t study_get_temperature(void)
  15. {
  16. return check_temperature();
  17. }
  18. void study_holiday(void) // 2020-8-20
  19. {
  20. }
  21. void study_getName(void)
  22. {
  23. return name;
  24. }