blob: 9ff03792f528b6186c2eeb5e0ac0b897dcd0a3e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright (c) 2015 YamaArashi
#ifndef FONT_H
#define FONT_H
#include <stdbool.h>
#include "gfx.h"
void ReadLatinFont(char* path, struct Image* image);
void WriteLatinFont(char* path, struct Image* image);
void ReadHalfwidthJapaneseFont(char* path, struct Image* image);
void WriteHalfwidthJapaneseFont(char* path, struct Image* image);
void ReadFullwidthJapaneseFont(char* path, struct Image* image);
void WriteFullwidthJapaneseFont(char* path, struct Image* image);
#endif // FONT_H
|