source:
bootcd/isolinux/syslinux-6.03/com32/lib/snprintf.c
Last change on this file was e16e8f2, checked in by , 3 years ago | |
---|---|
|
|
File size: 237 bytes |
Line | |
---|---|
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 | } |
Note: See TracBrowser
for help on using the repository browser.