kolibrios/programs/develop/ktcc/trunk/libc.obj/source/stdio/sprintf.c

13 lines
304 B
C
Raw Normal View History

/* Copyright (C) 2021 Logaev Maxim (turbocat2001), GPLv2 */
//#include "format_print.h"
#include <stdio.h>
int sprintf(char* buffer, const char* format, ...)
{
va_list va;
va_start(va, format);
const int ret = _vsnprintf(_out_buffer, buffer, (size_t)-1, format, va);
va_end(va);
return ret;
}