mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-09 16:42:10 +02:00
8 lines
123 B
C
8 lines
123 B
C
#pragma once
|
|
|
|
#include <AK/Compiler.h>
|
|
|
|
int kprintf(const char *fmt, ...);
|
|
int ksprintf(char* buf, const char *fmt, ...);
|
|
|