mirror of
https://github.com/nishiowo/nishbox
synced 2025-04-21 20:24:39 +00:00
18 lines
274 B
C
18 lines
274 B
C
#ifndef __NB_LOG_H__
|
|
#define __NB_LOG_H__
|
|
|
|
#include <nb_pre.h>
|
|
#include <nb_macro.h>
|
|
|
|
/* Type */
|
|
|
|
/* NishBox */
|
|
|
|
/* Standard */
|
|
|
|
#define nb_function_log(fmt, arg...) nb_log("%6d %24s: " fmt "\n", __LINE__, __FUNCTION_NAME__, arg)
|
|
|
|
void nb_log(const char* fmt, ...);
|
|
|
|
#endif
|