Files
Espresso/include/stdio.h

11 lines
124 B
C
Raw Permalink Normal View History

2025-06-17 15:50:07 -05:00
#ifndef STDIO_H
#define STDIO_H
2025-05-28 14:41:02 -05:00
2025-06-17 15:50:07 -05:00
#include <types.h>
2025-05-28 14:41:02 -05:00
#include <printf.h>
2025-06-17 15:50:07 -05:00
char getchar(void);
char* getstring(void);
#endif