11 lines
124 B
C
11 lines
124 B
C
#ifndef STDIO_H
|
|
#define STDIO_H
|
|
|
|
#include <types.h>
|
|
#include <printf.h>
|
|
|
|
char getchar(void);
|
|
char* getstring(void);
|
|
|
|
#endif
|