Mercurial > mplayer.hg
view osdep/ftello.c @ 22031:48036dc7f9d9
Fix base64_encode() max output length checking.
Made HTTP auth fail if sum of username+password lengths was below 3.
author | uau |
---|---|
date | Sun, 28 Jan 2007 19:25:03 +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; }