home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 7
/
FreshFishVol7.bin
/
bbs
/
gnu
/
libg++-2.6-fsf.lha
/
libg++-2.6
/
libio
/
stdio
/
setbuf.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-11-26
|
131b
|
10 lines
#include "libioP.h"
#include "stdio.h"
void
setbuf (fp, buf)
FILE *fp; char *buf;
{
_IO_setbuffer(fp, buf, _IO_BUFSIZ);
}