view osdep/vsscanf.c @ 17011:c29e74822d2c

1.1157: -novideo does not work in some cases, e.g. with MPEG demuxers. 1.1155/1.1156: Document the new osd options: -osd-duration, -noterm-osd, -term-osd-esc
author ranma
date Fri, 18 Nov 2005 14:14:21 +0000
parents 08cac43f1e38
children 936209c39ed1
line wrap: on
line source

#include "config.h"

#ifndef	HAVE_VSSCANF
/* system has no vsscanf.  try to provide one */

#include <stdio.h>
#include <stdarg.h>

int
vsscanf(const char *str, const char *format, va_list ap)
{
    /* XXX: can this be implemented in a more portable way? */
    long p1 = va_arg(ap, long);
    long p2 = va_arg(ap, long);
    long p3 = va_arg(ap, long);
    long p4 = va_arg(ap, long);
    long p5 = va_arg(ap, long);
    return sscanf(str, format, p1, p2, p3, p4, p5);
}
#endif