Files
Espresso/libc/include/stdio.h

10 lines
140 B
C
Raw Permalink Normal View History

2026-03-20 16:57:08 -05:00
#ifndef LIBC_STDIO_H
#define LIBC_STDIO_H
int writestring(const char* __s);
void writechar(char __c);
int getstring(char* __str);
#endif