Some changes have been applied to support various CTK configurations.

This commit is contained in:
matsutsuka 2007-11-28 09:38:21 +00:00
parent 5d1aaa4fe8
commit e1456c5522
4 changed files with 48 additions and 12 deletions

View file

@ -2,7 +2,13 @@
#define __LIBCONIO_ARCH_MSLL_H__
#include "contiki.h"
void clrscr_arch();
void clrscr_arch(void);
void libputc_arch(unsigned char ch);
void libputs_arch(char* str);
unsigned char wherex(void);
unsigned char wherey(void);
void gotoxy(unsigned char x, unsigned char y);
#endif /* __LIBCONIO_ARCH_MSLL_H__ */