io_utils.h 207 B

123456789101112131415161718
  1. #ifndef __IO_UTILS_H
  2. #define __IO_UTILS_H
  3. #include <stdbool.h>
  4. //
  5. void save_mode_init(void);
  6. //
  7. void set_save_mode(bool state);
  8. //
  9. bool get_save_mode(void);
  10. #endif // __IO_UTILS_H