repo.or.cz
/
syslinux-debian.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Releasing debian version 3:6.03+dfsg-10.
[syslinux-debian.git]
/
com32
/
lib
/
sscanf.c
blob
096d233b1b396150a63f4d08e05650188e812042
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
}