nishbox/engine/nb_log.h
2025-03-29 15:08:45 +09:00

17 lines
266 B
C

#ifndef __NB_LOG_H__
#define __NB_LOG_H__
#include <nb_macro.h>
/* External library */
/* NishBox */
/* Standard */
void nb_log(const char* fmt, ...);
#define nb_function_log(fmt, arg...) nb_log("%6d %24s: " fmt "\n", __LINE__, __FUNCTION_NAME__, arg)
#endif