acl/lib_tls/snprintf.c

25 lines
458 B
C
Raw Normal View History

#include "StdAfx.h"
2014-11-19 00:25:21 +08:00
#ifdef __STDC_WANT_SECURE_LIB__
#include <stdarg.h>
int tls_secure_snprintf(char *buf, size_t size, const char *fmt, ...)
{
va_list ap;
int ret;
va_start(ap, fmt);
ret = _vsnprintf_s(buf, size, size, fmt, ap);
va_end(ap);
return (ret);
}
int tls_secure_vsnprintf(char *buf, size_t size, const char *fmt, va_list ap)
{
int ret;
ret = _vsnprintf_s(buf, size, size, fmt, ap);
return (ret);
}
#endif