luat_repl.h 270 B

123456789101112131415
  1. #ifndef LUAT_REPL_H
  2. #define LUAT_REPL_H
  3. #include "luat_base.h"
  4. void luat_repl_init(void);
  5. int luat_repl_enable(int enable);
  6. void luat_repl_input_evt(size_t len);
  7. // int luat_repl_read(char* buff, size_t len);
  8. // int luat_repl_write(char* buff, size_t len);
  9. #endif