shithub: rgbds

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

View raw version
#ifndef RGBDS_ASM_CHARMAP_H
#define RGBDS_ASM_CHARMAP_H

#include <stdint.h>

#define MAXCHARMAPS	512
#define CHARMAPLENGTH	16

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, uint8_t output);
int charmap_Convert(char **input);

#endif