brintos

brintos / linux-shallow public Read only

0
0
Text · 495 B · c1f77fd Raw
18 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2#ifndef CONTROL_H3#define CONTROL_H4 5#include <stdbool.h>6 7void control_init(const char *control_host, const char *control_port,8		  bool server);9void control_cleanup(void);10void control_writeln(const char *str);11char *control_readln(void);12unsigned long control_readulong(void);13void control_expectln(const char *str);14bool control_cmpln(char *line, const char *str, bool fail);15void control_writeulong(unsigned long value);16 17#endif /* CONTROL_H */18