Subversion Repositories Shiroi

Rev

Rev 19 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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