readstream.c
来自「tcpip协议第三卷源码,下载下来可直接编译」· C语言 代码 · 共 28 行
C
28 行
/* * Copyright (c) 1996 W. Richard Stevens. All rights reserved. * Permission to use or modify this software and its documentation only for * educational purposes and without fee is hereby granted, provided that * the above copyright notice appear in all copies. The author makes no * representations about the suitability of this software for any purpose. * It is provided "as is" without express or implied warranty. */#include "cliserv.h"intread_stream(int fd, char *ptr, int maxbytes){ int nleft, nread; nleft = maxbytes; while (nleft > 0) { if ( (nread = read(fd, ptr, nleft)) < 0) return(nread); /* error, return < 0 */ else if (nread == 0) break; /* EOF, return #bytes read */ nleft -= nread; ptr += nread; } return(maxbytes - nleft); /* return >= 0 */}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?