summaryrefslogtreecommitdiff
path: root/Kernel/kprintf.h
blob: 29c2d15bd4de1e04553f569f66a4b7c9a6b65307 (plain)
1
2
3
4
5
6
7
#pragma once

extern "C" {
int dbgprintf(const char *fmt, ...);
int kprintf(const char *fmt, ...);
int ksprintf(char* buf, const char *fmt, ...);
}