home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
gnu
/
djgpp
/
src
/
libgplus.5
/
libio
/
stdio
/
fseek.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
|
1993-10-05
|
191 b
|
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);
}