ftell.c (136B)
1 #include <stdio.h> 2 3 long ftell(FILE *fin) 4 { 5 return (long)ftello(fin); 6 } 7 8 off_t ftello(FILE *fin) 9 { 10 return fin->ioffset + fin->ipos; 11 }
vx32Local 9vx git repository for patches. | |
git clone git://r-36.net/vx32 | |
Log | Files | Refs |