diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-06-09 00:10:02 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-06-09 00:10:13 +0200 |
commit | cc7c91c8ea38ac4cd226469481c2f6d63805331b (patch) | |
tree | 3f7816ae011b83f6baca597e3342e794721a51b2 /src/msg.h | |
parent | add {file,net}_close as a wrapper to close(2) (diff) | |
download | cimple-cc7c91c8ea38ac4cd226469481c2f6d63805331b.tar.gz cimple-cc7c91c8ea38ac4cd226469481c2f6d63805331b.zip |
msg: add msg_send_from_argv shortcut
Diffstat (limited to '')
-rw-r--r-- | src/msg.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -30,6 +30,8 @@ int msg_is_error(const struct msg *); int msg_recv(int fd, struct msg **); int msg_send(int fd, const struct msg *); +int msg_send_from_argv(int fd, const char **argv); + int msg_communicate(int fd, const struct msg *, struct msg **response); int msg_connect_and_communicate(const char *host, const char *port, const struct msg *, struct msg **); |