📄 tswap.c
字号:
/* Copyright (c) Colorado School of Mines, 2006.*//* All rights reserved. */#include "sftest.h"MAIN(){ Sfio_t* f1; Sfio_t* f2; char* s; if(!(f1 = sfopen(NIL(Sfio_t*), tstfile(0),"w+")) ) terror("Can't open file\n"); if(sfwrite(f1,"0123456789\n",11) != 11) terror("Can't write to file\n"); sfclose(sfstdin); if(sfswap(f1,sfstdin) != sfstdin) terror("Can't swap with sfstdin\n"); sfseek(sfstdin,(Sfoff_t)0,0); if(!(s = sfgetr(sfstdin,'\n',1)) ) terror("sfgetr failed\n"); if(strcmp(s,"0123456789") != 0) terror("Get wrong data\n"); if(!(f1 = sfswap(sfstdin,NIL(Sfio_t*))) ) terror("Failed swapping to NULL\n"); if(!sfstack(sfstdout,f1) ) terror("Failed stacking f1\n"); if(!(f2 = sfopen(NIL(Sfio_t*), tstfile(0), "r")) ) terror("Can't open for read\n"); if(sfswap(f1,f2) != NIL(Sfio_t*) ) terror("sfswap should have failed\n"); TSTEXIT(0);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -