aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/msg.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/msg.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/msg.h b/src/msg.h
index 03e5f89..a71b571 100644
--- a/src/msg.h
+++ b/src/msg.h
@@ -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 *);