blob: a6d27f8802ad91deb9568c39bfc231bdb7d2c5cd (
plain)
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
|
#ifndef FLATCC_IOV_H
#define FLATCC_IOV_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdlib.h>
/*
* The emitter receives one, or a few buffers at a time via
* this type. <sys/iov.h> compatible iovec structure used for
* allocation and emitter interface.
*/
typedef struct flatcc_iovec flatcc_iovec_t;
struct flatcc_iovec {
void *iov_base;
size_t iov_len;
};
/*
* The largest iovec vector the builder will issue. It will
* always be a relatively small number.
*/
#define FLATCC_IOV_COUNT_MAX 8
#ifdef __cplusplus
}
#endif
#endif /* FLATCC_IOV_H */
|