23 lines
331 B
C++
23 lines
331 B
C++
|
#include <stdio.h>
|
||
|
#include <stdarg.h>
|
||
|
#include "stub_util.h"
|
||
|
|
||
|
size_t UTIL_Format(char *buffer, size_t maxlength, const char *fmt, ...)
|
||
|
{
|
||
|
va_list ap;
|
||
|
|
||
|
va_start(ap, fmt);
|
||
|
size_t len = vsnprintf(buffer, maxlength, fmt, ap);
|
||
|
va_end(ap);
|
||
|
|
||
|
if (len >= maxlength)
|
||
|
{
|
||
|
len = maxlength - 1;
|
||
|
buffer[len] = '\0';
|
||
|
}
|
||
|
|
||
|
return len;
|
||
|
}
|
||
|
|
||
|
|