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
hdt: Removing builting sleep support in say
[syslinux.git]
/
com32
/
lib
/
snprintf.c
blob
304bab4d402994e4375b3af786e84ff9f85a606f
1
/*
2
* snprintf.c
3
*/
4
5
#include <stdio.h>
6
7
int
snprintf
(
char
*
buffer
,
size_t
n
,
const char
*
format
, ...)
8
{
9
va_list
ap
;
10
int
rv
;
11
12
va_start
(
ap
,
format
);
13
rv
=
vsnprintf
(
buffer
,
n
,
format
,
ap
);
14
va_end
(
ap
);
15
return
rv
;
16
}