treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / tools / testing / vsock / control.h
blob51814b4f9ac153052b3b0c381dd012a304ba762d
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 #ifndef CONTROL_H
3 #define CONTROL_H
5 #include <stdbool.h>
7 void control_init(const char *control_host, const char *control_port,
8 bool server);
9 void control_cleanup(void);
10 void control_writeln(const char *str);
11 char *control_readln(void);
12 void control_expectln(const char *str);
13 bool control_cmpln(char *line, const char *str, bool fail);
15 #endif /* CONTROL_H */