mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
* ‘term’ struct contains an array of 160 fcft glyph pointers * the glyph pointers are lazily allocated when we need to draw a box drawings character * Filtering out box drawings characters is easy - they are (except unicode 13, which isn’t handled yet )all in a single range.
6 lines
122 B
C
6 lines
122 B
C
#pragma once
|
|
|
|
#include <fcft/fcft.h>
|
|
|
|
struct terminal;
|
|
struct fcft_glyph *box_drawing(struct terminal *term, wchar_t wc);
|