blob: 0c585b9659431a2f4df724a08596fb59134d15a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*
* Posix stdio -- fdopen
*/
#include "iolib.h"
/*
* Open the named file with the given mode, using the given FILE
* Legal modes are given below, `additional characters may follow these sequences':
* r rb open to read
* w wb open to write, truncating
* a ab open to write positioned at eof, creating if non-existant
* r+ r+b rb+ open to read and write, creating if non-existant
* w+ w+b wb+ open to read and write, truncating
* a+ a+b ab+ open to read and write, positioned at eof, creating if non-existant.
*/
FILE *fdopen(const int fd, const char *mode){
FILE *f;
for(f=_IO_stream;f!=&_IO_stream[FOPEN_MAX];f++)
if(f->state==CLOSED)
break;
if(f==&_IO_stream[FOPEN_MAX])
return NULL;
f->fd=fd;
if(mode[0]=='a')
lseek(f->fd, 0L, 2);
if(f->fd==-1) return NULL;
f->flags=0;
f->state=OPEN;
f->buf=0;
f->rp=0;
f->wp=0;
f->lp=0;
return f;
}
|