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