Subversion Repositories Shiroi

Rev

Rev 3 | Rev 7 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3 Rev 6
Line 1... Line 1...
1
/* $Id: shiroi_text_mk_i.c 3 2024-08-28 09:19:04Z nishi $ */
1
/* $Id: shiroi_text_mk_i.c 6 2024-08-28 10:29:32Z nishi $ */
2
#include "shiroi_text_mk_i.h"
2
#include "shiroi_text_mk_i.h"
3
 
3
 
4
#include "shiroi.h"
4
#include "shiroi.h"
5
 
5
 
6
#include <stdlib.h>
6
#include <stdlib.h>
Line 8... Line 8...
8
void shiroi_text_mk_i_install(shiroi_t* shiroi, int slot) {
8
void shiroi_text_mk_i_install(shiroi_t* shiroi, int slot) {
9
	shiroi->cards[slot].type = SHIROI_TEXT_MARK_I;
9
	shiroi->cards[slot].type = SHIROI_TEXT_MARK_I;
10
	shiroi->cards[slot].textptr = &shiroi->cards[slot].text;
10
	shiroi->cards[slot].textptr = &shiroi->cards[slot].text;
11
 
11
 
12
	shiroi->cards[slot].text.key = 0;
12
	shiroi->cards[slot].text.key = 0;
-
 
13
	shiroi->cards[slot].text.caps = false;
13
}
14
}
14
 
15
 
15
void shiroi_text_mk_i(shiroi_t* shiroi) {
16
void shiroi_text_mk_i(shiroi_t* shiroi) {
16
	int i;
17
	int i;
17
 
18