Rev 18 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/* $Id: text.h 19 2024-08-29 07:16:04Z nishi $ */
#ifndef __TEXT_H__
#define __TEXT_H__
void text_init(void);
void text_card(int, int);
void clear(void);
void putchar(char);
void putstr(char*);
void print_ptr(void*);
char agetch(void);
char getch(void);
void cursor(void);
void killcursor(void);
#endif