Allow specifying * instead of any of the MENU COLOR fields.
[syslinux.git] / com32 / lib / sscanf.c
blob81aab9e05b311325ac55f7ed44b1ae2db627ddde
1 /*
2 * sscanf()
3 */
5 #include <stdio.h>
7 int sscanf(const char *str, const char *format, ...)
9 va_list ap;
10 int rv;
12 va_start(ap, format);
13 rv = vsscanf(str, format, ap);
14 va_end(ap);
16 return rv;