mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-02 06:37:52 +00:00
12 lines
162 B
C
12 lines
162 B
C
#pragma once
|
|
|
|
extern "C" {
|
|
|
|
int printf(const char* fmt, ...);
|
|
int sprintf(char* buffer, const char* fmt, ...);
|
|
int putchar(int ch);
|
|
void perror(const char*);
|
|
|
|
}
|
|
|