source:
bootcd/isolinux/syslinux-6.03/com32/lib/sscanf.c
@
26ffad7
Last change on this file since 26ffad7 was e16e8f2, checked in by , 3 years ago | |
---|---|
|
|
File size: 219 bytes |
Rev | Line | |
---|---|---|
[e16e8f2] | 1 | /* |
2 | * sscanf() | |
3 | */ | |
4 | ||
5 | #include <stdio.h> | |
6 | ||
7 | int sscanf(const char *str, const char *format, ...) | |
8 | { | |
9 | va_list ap; | |
10 | int rv; | |
11 | ||
12 | va_start(ap, format); | |
13 | rv = vsscanf(str, format, ap); | |
14 | va_end(ap); | |
15 | ||
16 | return rv; | |
17 | } |
Note: See TracBrowser
for help on using the repository browser.