uio.h

来自「著名操作系统Plan 9的第三版的部分核心源代码。现在很难找到了。Plan 9是」· C头文件 代码 · 共 35 行

H
35
字号
#ifndef __SYS_UIO_H__#define __SYS_UIO_H__#ifndef _BSD_EXTENSION    This header file is an extension to ANSI/POSIX#endif#ifdef __cplusplusextern "C" {#endif#pragma lib "/$M/lib/ape/libbsd.a"/* * Copyright (c) 1982, 1986 Regents of the University of California. * All rights reserved.  The Berkeley software License Agreement * specifies the terms and conditions for redistribution. * *	@(#)uio.h	7.1 (Berkeley) 6/4/86 */struct iovec {	char	*iov_base;	int	iov_len;};extern int writev(int, struct iovec*, int);extern int readv(int, struct iovec*, int);#ifdef __cplusplus}#endif#endif /* !__SYS_UIO_H__ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?