File: vsnprintf.c

package info (click to toggle)
harp 1.29-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 57,028 kB
  • sloc: xml: 475,954; ansic: 175,442; sh: 4,898; yacc: 2,186; javascript: 1,510; python: 1,148; makefile: 656; lex: 591
file content (15 lines) | stat: -rw-r--r-- 372 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <stdarg.h>
#include <string.h>

int vsnprintf(const *str, size_t size, const char *format, va_list ap)
{
    /* For systems that don't support the safe vsnprintf we just use the
     * unsafe variant.
     * A clean alternative is unfortunately not easy to realize.
     */
    return vsprintf(str, format, ap);
}