2024-07-14 00:54:27 +08:00
|
|
|
#ifndef CRASHPOWEROS_STDIO_H
|
|
|
|
#define CRASHPOWEROS_STDIO_H
|
|
|
|
|
2024-08-30 16:12:44 +08:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stddef.h>
|
2024-08-31 12:36:49 +08:00
|
|
|
#include <stdarg.h>
|
2024-08-30 16:12:44 +08:00
|
|
|
|
2024-08-29 22:00:28 +08:00
|
|
|
void put_char(char a);
|
2024-08-31 12:36:49 +08:00
|
|
|
int printf(const char* fmt, ...);
|
|
|
|
int puts(const char *s);
|
|
|
|
int vsprintf(char *buf, const char *fmt, va_list args);
|
2024-07-14 00:54:27 +08:00
|
|
|
|
|
|
|
#endif
|