APUE
西加加
这个作者很懒,什么都没留下…
展开
-
APUE 1-1
先挖个坑,慢慢填原创 2014-04-06 20:06:46 · 319 阅读 · 0 评论 -
APUE 1-2
#include "apue.h" #define BUFFSIZE 4096 int main(){ int n; char buf[BUFFSIZE]; while((n=read(STDIN_FILENO,buf,BUFFSIZE))>0) if(write(STDOUT_FILENO,buf,n)!=n) err_sys原创 2014-04-07 22:00:18 · 306 阅读 · 0 评论 -
APUE 1-4
#include "apue.h" int main(){ printf("hello world from process ID %d\n",getpid()); exit(0); } 打印进程ID原创 2014-04-10 10:06:51 · 289 阅读 · 0 评论 -
APUE 1-3
#include "apue.h" int main(){ int c; while((c=getc(stdin))!=EOF) if(putc(c,stdout)==EOF) err_sys("output error"); if(ferror(stdin)) err_sys("input erro原创 2014-04-10 10:06:06 · 301 阅读 · 0 评论