⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 uio.h

📁 著名操作系统Plan 9的第三版的部分核心源代码。现在很难找到了。Plan 9是bell实验室开发的Unix后继者。
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -