Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. /* Copyright (C) 2021 Logaev Maxim (turbocat2001), GPLv2 */
  2.  
  3. #include <stdio.h>
  4. #include <stdarg.h>
  5.  
  6. void debug_printf(const char *format,...)
  7. {
  8.     va_list ap;
  9.     char log_board[300];
  10.     va_start (ap, format);
  11.     vsnprintf(log_board, 300, format, ap);
  12.     va_end(ap);
  13.     _ksys_debug_puts(log_board);
  14. }
  15.