home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Shareware Magazine 1996 December
/
CD_shareware_12-96.iso
/
DOS
/
Programa
/
CCDL122.ZIP
/
CLIBS
/
IO
/
FTELL.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
|
1996-08-08
|
157 b
|
11 lines
#include <stdio.h>
#include <time.h>
#include <libp.h>
long ftell(FILE *stream)
{
long rv=0;
if (fgetpos(stream,&rv))
return -1;
return rv;
}