mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:58:12 +00:00
10 lines
136 B
C
10 lines
136 B
C
#pragma once
|
|
|
|
extern "C" {
|
|
|
|
int printf(const char* fmt, ...);
|
|
int sprintf(char* buffer, const char* fmt, ...);
|
|
int putchar(int ch);
|
|
|
|
}
|
|
|