ftell.c - vx32 - Local 9vx git repository for patches.
 (HTM) git clone git://r-36.net/vx32
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       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 }