summaryrefslogtreecommitdiff
path: root/code/fe310/eos/eve/screen/font.h
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2020-07-03 02:02:27 +0200
committerUros Majstorovic <majstor@majstor.org>2020-07-03 02:02:27 +0200
commitd8ced7b070beaa010f557c4c244c5c386d4e6efd (patch)
tree9f676f5ec4654f5d4b306393b2c35c34e50bdfe4 /code/fe310/eos/eve/screen/font.h
parentf550a31fda2cb7d76e917ab69d075daa1557bf99 (diff)
str widget draw selection and cursor implemented
Diffstat (limited to 'code/fe310/eos/eve/screen/font.h')
-rw-r--r--code/fe310/eos/eve/screen/font.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/fe310/eos/eve/screen/font.h b/code/fe310/eos/eve/screen/font.h
index 7de3ff5..525e669 100644
--- a/code/fe310/eos/eve/screen/font.h
+++ b/code/fe310/eos/eve/screen/font.h
@@ -8,6 +8,6 @@ typedef struct EVEFont {
} EVEFont;
void eve_font_init(EVEFont *font, uint8_t font_id);
-uint16_t eve_font_strw(EVEFont *font, char *s);
-uint16_t eve_font_bufw(EVEFont *font, char *buf, uint16_t buf_len);
+uint16_t eve_font_str_w(EVEFont *font, char *s);
+uint16_t eve_font_buf_w(EVEFont *font, char *buf, uint16_t buf_len);
uint8_t eve_font_h(EVEFont *font);