mirror of
https://github.com/RobCo-Industries/Pip-OS.git
synced 2026-08-24 10:04:26 -05:00
19 lines
243 B
C
19 lines
243 B
C
#ifndef __STDIO_H__
|
|
#define __STDIO_H__
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
char getchar(void);
|
|
void putcchar(char c);
|
|
void puts(const char * s);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __STDIO_H__
|