Subversion Repositories Kolibri OS

Rev

Rev 8687 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 2021 Logaev Maxim (turbocat2001), GPLv2 */
  2.  
  3. //#include "format_print.h"
  4. #include <stdio.h>
  5.  
  6. int snprintf(char* buffer, size_t count, const char* format, ...)
  7. {
  8.   va_list va;
  9.   va_start(va, format);
  10.   const int ret = _vsnprintf(_out_buffer, buffer, count, format, va);
  11.   va_end(va);
  12.   return ret;
  13. }