view osdep/ftello.c @ 22094:e2d1bb1d2c6b

demux_mpg_probe() seek to the initial position before returning - patch by reimar
author nicodvb
date Sat, 03 Feb 2007 14:09:47 +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;
}