Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.1-rc2 13 lines 306 B view raw
1#ifndef CONTROL_H 2#define CONTROL_H 3 4#include <stdbool.h> 5 6void control_init(const char *control_host, const char *control_port, 7 bool server); 8void control_cleanup(void); 9void control_writeln(const char *str); 10char *control_readln(void); 11void control_expectln(const char *str); 12 13#endif /* CONTROL_H */