fxlibc/src/libc/stdio/ftell.c

11 lines
114 B
C

#include <stdio.h>
long ftell(FILE *fp)
{
fpos_t pos;
if(fgetpos(fp, &pos))
return -1;
return (long)pos;
}