Mercurial > mplayer.hg
view osdep/vsscanf.c @ 11088:bcba2df350de
w0w w0w w0w! Today is the new big day in the Spanish world! :D
Here is the last translated file of the xml docs, thanks to
David L <dlodeiro@inspired.net.au>
author | nauj27 |
---|---|
date | Sun, 12 Oct 2003 20:37:22 +0000 |
parents | edfe34c5405d |
children | 08cac43f1e38 |
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