forked from KolibriOS/kolibrios
728f124678
Configured autobuild git-svn-id: svn://kolibrios.org@8687 a494cfbc-eb01-0410-851d-a64ba20cac60
13 lines
314 B
C
13 lines
314 B
C
/* Copyright (C) 2021 Logaev Maxim (turbocat2001), GPLv2 */
|
|
|
|
//#include "format_print.h"
|
|
#include <stdio.h>
|
|
|
|
int snprintf(char* buffer, size_t count, const char* format, ...)
|
|
{
|
|
va_list va;
|
|
va_start(va, format);
|
|
const int ret = _vsnprintf(_out_buffer, buffer, count, format, va);
|
|
va_end(va);
|
|
return ret;
|
|
} |