Files
Espresso/include/stdio.h

17 lines
239 B
C
Raw 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);
2025-10-20 21:57:30 -05:00
char* gets(void); /* Use this instead of getstring() */
static inline void putchar(char c)
{
printf("%c", c);
}
2025-06-17 15:50:07 -05:00
#endif