kern

annotate src/term.h @ 4:0489a34ab348

- reverted the trunk back to hardware scrolling - added a missing include (ctype.h in term.c) - added a comment explaining what memset16 does - beefed up the README file
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 10 Dec 2010 03:44:34 +0200
parents ebe5e0e44a9d
children
rev   line source
nuclear@1 1 #ifndef TERM_H_
nuclear@1 2 #define TERM_H_
nuclear@1 3
nuclear@2 4 int set_text_color(int c);
nuclear@2 5 int set_back_color(int c);
nuclear@1 6
nuclear@1 7 int putchar(int c);
nuclear@1 8
nuclear@1 9 #endif /* TERM_H_ */