Subversion Repositories Kolibri OS

Rev

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

  1. #include <stdarg.h>
  2. #include <kolibrisys.h>
  3.  
  4. void debug_printf(const char *format,...)
  5. {
  6.         va_list ap;
  7.         char log_board[300];
  8.         va_start (ap, format);
  9.         vsnprintf(log_board, sizeof log_board, format, ap);
  10.         va_end(ap);
  11.         debug_out_str(log_board);
  12. }
  13.