Luna/libluna/include/luna/DebugLog.h

8 lines
175 B
C
Raw Normal View History

2022-12-22 17:00:35 +00:00
#pragma once
#include <luna/Attributes.h>
#include <stdarg.h>
extern void debug_log_impl(const char* format, va_list ap);
2023-01-02 12:07:29 +00:00
void dbgln(const char* format, ...) _format(1, 2);