diff options
author | Taru Karttunen <taruti@taruti.net> | 2011-03-30 15:46:40 +0300 |
---|---|---|
committer | Taru Karttunen <taruti@taruti.net> | 2011-03-30 15:46:40 +0300 |
commit | e5888a1ffdae813d7575f5fb02275c6bb07e5199 (patch) | |
tree | d8d51eac403f07814b9e936eed0c9a79195e2450 /sys/src/ape/lib/ap/stdio/sclose.c |
Import sources from 2011-03-30 iso image
Diffstat (limited to 'sys/src/ape/lib/ap/stdio/sclose.c')
-rwxr-xr-x | sys/src/ape/lib/ap/stdio/sclose.c | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/sys/src/ape/lib/ap/stdio/sclose.c b/sys/src/ape/lib/ap/stdio/sclose.c new file mode 100755 index 000000000..d55396a3a --- /dev/null +++ b/sys/src/ape/lib/ap/stdio/sclose.c @@ -0,0 +1,37 @@ +/* + * pANS stdio -- sclose + */ +#include "iolib.h" +#include <stdlib.h> + +char *_IO_sclose(FILE *f){ + switch(f->state){ + default: /* ERR CLOSED */ + if(f->buf && f->flags&BALLOC) + free(f->buf); + f->state=CLOSED; + f->flags=0; + return NULL; + case OPEN: + f->buf=malloc(1); + f->buf[0]='\0'; + break; + case RD: + case END: + f->flags=0; + break; + case RDWR: + case WR: + if(f->wp==f->rp){ + if(f->flags&BALLOC) + f->buf=realloc(f->buf, f->bufl+1); + if(f->buf==NULL) return NULL; + } + *f->wp='\0'; + f->flags=0; + break; + } + f->state=CLOSED; + f->flags=0; + return f->buf; +} |