aboutsummaryrefslogtreecommitdiff
path: root/src/conio.h
blob: 25ca6c29045bc7f01c4609af9d50e62765cd7c69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 */