-
Notifications
You must be signed in to change notification settings - Fork 24
/
fbink_misc_fonts.h
38 lines (29 loc) · 1.39 KB
/
fbink_misc_fonts.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
FBInk: FrameBuffer eInker, a library to print text & images to an eInk Linux framebuffer
Copyright (C) 2018-2024 NiLuJe <[email protected]>
SPDX-License-Identifier: GPL-3.0-or-later
----
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef __FBINK_MISC_FONTS_H
#define __FBINK_MISC_FONTS_H
// Mainly to make IDEs happy
#include "fbink.h"
#include "fbink_internal.h"
#include "fonts/ctrld.h"
#include "fonts/fkp.h"
#include "fonts/kates.h"
// NOTE: Should technically be pure, but we can get away with const, according to https://lwn.net/Articles/285332/
static const unsigned char* kates_get_bitmap(uint32_t codepoint) __attribute__((const));
static const unsigned char* fkp_get_bitmap(uint32_t codepoint) __attribute__((const));
static const unsigned char* ctrld_get_bitmap(uint32_t codepoint) __attribute__((const));
#endif