Rev 19 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/* $Id: text.h 18 2024-08-29 06:56:23Z 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 scroll_y(void);
void print_ptr(void*);
char agetch(void);
char getch(void);
void cursor(void);
void killcursor(void);
#endif