1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-17 20:12:26 +00:00
serenity/Kernel/kprintf.h

7 lines
123 B
C

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