diff options
Diffstat (limited to 'src/conio.h')
| -rw-r--r-- | src/conio.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/conio.h b/src/conio.h new file mode 100644 index 0000000..25ca6c2 --- /dev/null +++ b/src/conio.h @@ -0,0 +1,14 @@ +/** + * conio + */ + +#ifndef CONIO_H +#define CONIO_H + +void print(const char* c); +void printc(char* c); +void printl(const char* c, unsigned short l); +void get_line(char* buf, unsigned char len); +char get_char(void); + +#endif /* CONIO_H */ |
