8 lines
175 B
C
8 lines
175 B
C
#pragma once
|
|
#include <luna/Attributes.h>
|
|
#include <stdarg.h>
|
|
|
|
extern void debug_log_impl(const char* format, va_list ap);
|
|
|
|
void dbgln(const char* format, ...) _format(1, 2);
|