mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
Follow Linux kernel coding style. Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
20 lines
415 B
C
20 lines
415 B
C
#ifndef RGBDS_ASM_CHARMAP_H
|
|
#define RGBDS_ASM_CHARMAP_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#define MAXCHARMAPS 512
|
|
#define CHARMAPLENGTH 16
|
|
|
|
struct Charmap {
|
|
int32_t count;
|
|
char input[MAXCHARMAPS][CHARMAPLENGTH + 1];
|
|
char output[MAXCHARMAPS];
|
|
};
|
|
|
|
int32_t readUTF8Char(char *destination, char *source);
|
|
int32_t charmap_Add(char *input, uint8_t output);
|
|
int32_t charmap_Convert(char **input);
|
|
|
|
#endif /* RGBDS_ASM_CHARMAP_H */
|