Subversion Repositories Shiroi

Rev

Rev 19 | Go to most recent revision | Details | Last modification | View Log | RSS feed

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