qed: Fix static checker warning
[linux/fpc-iii.git] / tools / testing / vsock / control.h
blob54a07efd267c2f37cdc83521e524968cf5403894
1 #ifndef CONTROL_H
2 #define CONTROL_H
4 #include <stdbool.h>
6 void control_init(const char *control_host, const char *control_port,
7 bool server);
8 void control_cleanup(void);
9 void control_writeln(const char *str);
10 char *control_readln(void);
11 void control_expectln(const char *str);
13 #endif /* CONTROL_H */