summaryrefslogtreecommitdiff
path: root/sys/src/libstdio/sopenw.c
blob: cd4836b1d3b1cbcf2bf53bd35feab51c8754a25d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * pANS stdio -- sopenw
 */
#include "iolib.h"
FILE *sopenw(void){
	FILE *f;
	qlock(&_stdiolk);
	for(f=_IO_stream;f!=&_IO_stream[FOPEN_MAX];f++) if(f->state==CLOSED) break;
	if(f==&_IO_stream[FOPEN_MAX]) {
		qunlock(&_stdiolk);
		return NULL;
	}
	f->buf=f->rp=f->wp=0;
	f->state=OPEN;
	f->flags=STRING;
	f->fd=-1;
	qunlock(&_stdiolk);
	return f;
}