/** * 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 */