serenity/Kernel/kprintf.h

8 lines
123 B
C

#pragma once
#include <AK/Compiler.h>
int kprintf(const char *fmt, ...);
int ksprintf(char* buf, const char *fmt, ...);