tswap.c

来自「su 的源代码库」· C语言 代码 · 共 39 行

C
39
字号
/* 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 + =
减小字号Ctrl + -
显示快捷键?