blob: 2f631fc80a71900f0ea5c60cb54f2c3cdefcb356 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*
* Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com>
* This file is part of the "cimple" project.
* For details, see https://github.com/egor-tensin/cimple.
* Distributed under the MIT License.
*/
#ifndef __MSG_H__
#define __MSG_H__
#include <stdlib.h>
struct msg;
size_t msg_get_length(const struct msg *);
const char **msg_get_words(const struct msg *);
int msg_success(struct msg **);
int msg_error(struct msg **);
int msg_is_success(const struct msg *);
int msg_is_error(const struct msg *);
int msg_copy(struct msg **, const struct msg *);
void msg_free(struct msg *);
int msg_from_argv(struct msg **, const char **argv);
int msg_recv(int fd, struct msg **);
int msg_send(int fd, const struct msg *);
int msg_send_and_wait(int fd, const struct msg *, struct msg **response);
void msg_dump(const struct msg *);
#endif
|