mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
13 lines
298 B
C
13 lines
298 B
C
#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_IOVEC_H_
|
|
#define COSMOPOLITAN_LIBC_NT_STRUCT_IOVEC_H_
|
|
COSMOPOLITAN_C_START_
|
|
|
|
struct NtIovec {
|
|
uint32_t len;
|
|
char *buf;
|
|
};
|
|
|
|
void _DescribeIovNt(const struct NtIovec *, uint32_t, ssize_t);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* COSMOPOLITAN_LIBC_NT_STRUCT_IOVEC_H_ */
|