Mercurial > mplayer.hg
view osdep/ftello.c @ 23466:db5fd8a09c97
r23440: New "automute" tv:// option.
r23444: update manual date, its been 8 months...
r23455: new sentences on new lines, diego says ;-P
r23467: then/than typo spotted by "JRaSH"
author | voroshil |
---|---|
date | Wed, 06 Jun 2007 08:14:14 +0000 |
parents | e268886eb13d |
children |
line wrap: on
line source
/* * ftello.c * 64-bit version of ftello() for systems which do not have it */ #include "config.h" #include <stdio.h> #include <sys/types.h> off_t ftello(FILE *stream) { fpos_t floc; if (fgetpos(stream, &floc) != 0) return -1; return floc; }