summaryrefslogtreecommitdiff
path: root/sys/src/libstdio/sclose.c
diff options
context:
space:
mode:
authorTaru Karttunen <taruti@taruti.net>2011-03-30 15:46:40 +0300
committerTaru Karttunen <taruti@taruti.net>2011-03-30 15:46:40 +0300
commite5888a1ffdae813d7575f5fb02275c6bb07e5199 (patch)
treed8d51eac403f07814b9e936eed0c9a79195e2450 /sys/src/libstdio/sclose.c
Import sources from 2011-03-30 iso image
Diffstat (limited to 'sys/src/libstdio/sclose.c')
-rwxr-xr-xsys/src/libstdio/sclose.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/sys/src/libstdio/sclose.c b/sys/src/libstdio/sclose.c
new file mode 100755
index 000000000..940b80227
--- /dev/null
+++ b/sys/src/libstdio/sclose.c
@@ -0,0 +1,34 @@
+/*
+ * pANS stdio -- sclose
+ */
+#include "iolib.h"
+char *sclose(FILE *f){
+ switch(f->state){
+ default: /* ERR CLOSED */
+ if(f->buf && f->flags&BALLOC)
+ free(f->buf);
+ 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;
+}