mirror of
https://github.com/limine-bootloader/limine
synced 2024-12-12 17:47:19 +03:00
12 lines
230 B
C
12 lines
230 B
C
#ifndef __LIB__PRINT_H__
|
|
#define __LIB__PRINT_H__
|
|
|
|
#include <stdarg.h>
|
|
|
|
void print(const char *fmt, ...);
|
|
void vprint(const char *fmt, va_list args);
|
|
|
|
#define printv(FMT, ...) ({ if (verbose) print(FMT, ##__VA_ARGS__); })
|
|
|
|
#endif
|