mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 06:17:34 +00:00
Start work on a standard C library. I'm calling it... LibC.
This commit is contained in:
parent
85bcf2ed0f
commit
4cbf079a17
8 changed files with 311 additions and 0 deletions
10
LibC/stdio.h
Normal file
10
LibC/stdio.h
Normal file
|
@ -0,0 +1,10 @@
|
|||
#pragma once
|
||||
|
||||
extern "C" {
|
||||
|
||||
int printf(const char* fmt, ...);
|
||||
int sprintf(char* buffer, const char* fmt, ...);
|
||||
int putchar(int ch);
|
||||
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue