Subversion Repositories Shiroi

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
8 nishi 1
/* $Id: text.h 12 2024-08-29 04:19:08Z nishi $ */
2
 
3
#ifndef __TEXT_H__
4
#define __TEXT_H__
5
 
6
void text_init(void);
12 nishi 7
void text_card(int, int);
8 nishi 8
 
9
void clear(void);
10
void putchar(char);
11
void putstr(char*);
12
void scroll_y(void);
13
void print_ptr(void*);
12 nishi 14
char agetch(void);
8 nishi 15
char getch(void);
16
void cursor(void);
17
void killcursor(void);
18
 
19
#endif