diff options
author | Martmists <martmists@gmail.com> | 2020-04-22 13:57:09 +0200 |
---|---|---|
committer | Martmists <martmists@gmail.com> | 2020-04-22 13:57:09 +0200 |
commit | 9b3107c478c9f39c17ef4171c9c5330adcb1385a (patch) | |
tree | e63d60215b5ba9405d7aeb3322873d26c5f03cc1 /tools/nitrogfx/font.h | |
parent | dcdf58739922de3b3bbc828f46e36b83f53c52a0 (diff) | |
parent | 5ee605688aaea7fe6b4573dc2ce5ce24cd671855 (diff) |
Merge branch 'master' into os_lib
Diffstat (limited to 'tools/nitrogfx/font.h')
-rw-r--r-- | tools/nitrogfx/font.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/nitrogfx/font.h b/tools/nitrogfx/font.h new file mode 100644 index 00000000..45086d02 --- /dev/null +++ b/tools/nitrogfx/font.h @@ -0,0 +1,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 |