sscanf.c (185B)
1 #include <stdio.h> 2 #include <stdarg.h> 3 4 int sscanf(const char *s, const char *fmt, ...) 5 { 6 va_list arg; 7 8 va_start(arg, fmt); 9 int n = vsscanf(s, fmt, arg); 10 va_end(arg); 11 return n; 12 }
vx32Local 9vx git repository for patches. | |
git clone git://r-36.net/vx32 | |
Log | Files | Refs |