home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 6
/
Aminet 6 - June 1995.iso
/
Aminet
/
text
/
hyper
/
ADtoHT2_0.lha
/
MyLib.lha
/
stdio
/
setvbuf.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-03-04
|
322 b
|
17 lines
#include <stdio.h>
#include <proto/dos.h>
/************************************************************************/
#undef setvbuf
int setvbuf(FILE *Stream, char *Buffer, int BufferMode, size_t BufferSize)
{
long Result;
Result=SetVBuf(fileno(Stream),Buffer,BufferMode,BufferSize);
return Result ? EOF : 0;
}