summaryrefslogtreecommitdiff
path: root/code/fe310/eos/eve/screen/font.h
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2020-07-02 20:32:50 +0200
committerUros Majstorovic <majstor@majstor.org>2020-07-02 20:32:50 +0200
commitdabbf944711eef384dcc87b2d49843bedcb1e84a (patch)
treebab3fc421c7df9c200ec054ed4a2ec103376f383 /code/fe310/eos/eve/screen/font.h
parentd3d239fa9cb25b4a3656c09dbb38f5743d51a213 (diff)
copy/paste for text widget implemented
Diffstat (limited to 'code/fe310/eos/eve/screen/font.h')
-rw-r--r--code/fe310/eos/eve/screen/font.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/code/fe310/eos/eve/screen/font.h b/code/fe310/eos/eve/screen/font.h
index a46c942..7de3ff5 100644
--- a/code/fe310/eos/eve/screen/font.h
+++ b/code/fe310/eos/eve/screen/font.h
@@ -8,5 +8,6 @@ typedef struct EVEFont {
} EVEFont;
void eve_font_init(EVEFont *font, uint8_t font_id);
-uint16_t eve_font_string_width(EVEFont *font, char *s);
-uint8_t eve_font_height(EVEFont *font);
+uint16_t eve_font_strw(EVEFont *font, char *s);
+uint16_t eve_font_bufw(EVEFont *font, char *buf, uint16_t buf_len);
+uint8_t eve_font_h(EVEFont *font);