mirror of
https://github.com/nishiowo/nishbox
synced 2025-04-21 20:24:39 +00:00
22 lines
287 B
C
22 lines
287 B
C
#define NB_LOG_EXPOSE
|
|
|
|
#include "nb_pre.h"
|
|
|
|
/* External library */
|
|
|
|
/* Interface */
|
|
#include "nb_log.h"
|
|
|
|
/* NishBox */
|
|
|
|
/* Standard */
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
|
|
void nb_log(const char* fmt, ...) {
|
|
va_list va;
|
|
va_start(va, fmt);
|
|
vfprintf(stderr, fmt, va);
|
|
va_end(va);
|
|
}
|