3e1db26a5a
Removing elvis, importing nvi, ctags, updating libedit. Change-Id: I881eb04d2dc64cf112facd992de1114e1a59107f
47 lines
757 B
C
47 lines
757 B
C
/* $NetBSD: snprintf.c,v 1.1.1.2 2008/05/18 14:29:39 aymeric Exp $ */
|
|
|
|
#include "config.h"
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#ifdef __STDC__
|
|
#include <stdarg.h>
|
|
#else
|
|
#include <varargs.h>
|
|
#endif
|
|
|
|
/*
|
|
* PUBLIC: #ifndef HAVE_SNPRINTF
|
|
* PUBLIC: int snprintf __P((char *, size_t, const char *, ...));
|
|
* PUBLIC: #endif
|
|
*/
|
|
int
|
|
#ifdef __STDC__
|
|
snprintf(char *str, size_t n, const char *fmt, ...)
|
|
#else
|
|
snprintf(str, n, fmt, va_alist)
|
|
char *str;
|
|
size_t n;
|
|
const char *fmt;
|
|
va_dcl
|
|
#endif
|
|
{
|
|
va_list ap;
|
|
int rval;
|
|
#ifdef __STDC__
|
|
va_start(ap, fmt);
|
|
#else
|
|
va_start(ap);
|
|
#endif
|
|
#ifdef SPRINTF_RET_CHARPNT
|
|
(void)vsprintf(str, fmt, ap);
|
|
va_end(ap);
|
|
return (strlen(str));
|
|
#else
|
|
rval = vsprintf(str, fmt, ap);
|
|
va_end(ap);
|
|
return (rval);
|
|
#endif
|
|
}
|