©2004 by Marc J. Rochkind. All rights reserved. Portions marked "Open Source" may be copied under license.

 

Main Page   Modules   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members  

c6/piperead.c

Go to the documentation of this file.
00001 /*
00002     piperead (goes with pipewrite in x6.c)
00003     AUP2, Sec. 6.02.3
00004 
00005     Copyright 2003 by Marc J. Rochkind. All rights reserved.
00006     May be copied only for purposes and under conditions described
00007     on the Web page www.basepath.com/aup/copyright.htm.
00008 
00009     The Example Files are provided "as is," without any warranty;
00010     without even the implied warranty of merchantability or fitness
00011     for a particular purpose. The author and his publisher are not
00012     responsible for any damages, direct or incidental, resulting
00013     from the use or non-use of these Example Files.
00014 
00015     The Example Files may contain defects, and some contain deliberate
00016     coding mistakes that were included for educational reasons.
00017     You are responsible for determining if and how the Example Files
00018     are to be used.
00019 
00020 */
00021 #include "defs.h"
00022 
00023 /*[piperead]*/
00024 int main(int argc, char *argv[])
00025 {
00026     int fd;
00027     ssize_t nread;
00028     char s[100];
00029 
00030     fd = atoi(argv[1]);
00031     printf("reading file descriptor %d\n", fd);
00032     ec_neg1( nread = read(fd, s, sizeof(s)) )
00033     if (nread == 0)
00034         printf("EOF\n");
00035     else
00036         printf("read %ld bytes: %s\n", (long)nread, s);
00037     exit(EXIT_SUCCESS);
00038 
00039 EC_CLEANUP_BGN
00040     exit(EXIT_FAILURE);
00041 EC_CLEANUP_END
00042 }
00043 /*[]*/

Generated on Fri Apr 23 10:56:58 2004 for AUP2 Example Source by doxygen 1.3.1