2026-07-06 22:13:57 -05:00
|
|
|
#ifndef RLIBC_STDIO_H
|
|
|
|
|
#define RLIBC_STDIO_H
|
2026-06-28 17:58:58 -05:00
|
|
|
|
2026-07-06 22:13:57 -05:00
|
|
|
#include <stdarg.h>
|
2026-06-28 17:58:58 -05:00
|
|
|
|
2026-07-06 22:13:57 -05:00
|
|
|
int printf(const char *format, ...);
|
2026-06-28 17:58:58 -05:00
|
|
|
|
2026-07-06 22:13:57 -05:00
|
|
|
char getchar(void);
|
2026-06-28 17:58:58 -05:00
|
|
|
|
2026-07-06 22:13:57 -05:00
|
|
|
#endif
|