shithub: rgbds

ref: ab66b28fdf4616b84a48bc58fd870f7fa9e28db2
dir: /include/asm/charmap.h/

View raw version
#ifndef ASMOTOR_ASM_CHARMAP_H
#define ASMOTOR_ASM_CHARMAP_H

#define MAXCHARMAPS	512
#define CHARMAPLENGTH	8

struct Charmap {
	int count;
	char input[MAXCHARMAPS][CHARMAPLENGTH + 1];
	char output[MAXCHARMAPS];
};

int readUTF8Char(char *destination, char *source);
void charmap_Sort();
int charmap_Add(char *input, UBYTE output);
int charmap_Convert(char **input);

#endif