ReadLine.h 170 B

12345678910
  1. #ifndef CORE_READ_LINE_H
  2. #define CORE_READ_LINE_H
  3. #include <stddef.h>
  4. bool startReadLine(void);
  5. bool readLine(char* buffer, size_t n);
  6. void stopReadLine(void);
  7. #endif