diff options
Diffstat (limited to '')
-rw-r--r-- | src/msg.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -6,9 +6,10 @@ struct msg { char **argv; }; +struct msg *msg_copy(const struct msg *); void msg_free(const struct msg *); -int msg_from_argv(struct msg *, const char *argv[]); +int msg_from_argv(struct msg *, char **argv); int msg_recv(int fd, struct msg *); int msg_send(int fd, const struct msg *); |