control.h 306 B

1234567891011121314
  1. #ifndef CONTROL_H
  2. #define CONTROL_H
  3. #include <stdbool.h>
  4. void control_init(const char *control_host, const char *control_port,
  5. bool server);
  6. void control_cleanup(void);
  7. void control_writeln(const char *str);
  8. char *control_readln(void);
  9. void control_expectln(const char *str);
  10. #endif /* CONTROL_H */