view linux/vsscanf.c @ 9212:24b102dbd0fe

Fixes a problem where the menu won't work, if you just use freetype fonts and have no font.desc. patch by Andreas Hess <jaska@gmx.net>
author arpi
date Sun, 02 Feb 2003 01:43:40 +0000
parents 1dd8fe0776d3
children
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