home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 7
/
FreshFishVol7.bin
/
bbs
/
gnu
/
libg++-2.6-fsf.lha
/
libg++-2.6
/
libio
/
stdio
/
fseek.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-11-26
|
191b
|
13 lines
#include "stdio.h"
#include "libioP.h"
int
fseek(fp, offset, whence)
_IO_FILE* fp;
long int offset;
int whence;
{
COERCE_FILE(fp);
return _IO_fseek(fp, offset, whence);
}