repo.or.cz
/
syslinux.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Allow specifying * instead of any of the MENU COLOR fields.
[syslinux.git]
/
com32
/
lib
/
sscanf.c
blob
81aab9e05b311325ac55f7ed44b1ae2db627ddde
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
}