diff options
author | Uros Majstorovic <majstor@majstor.org> | 2020-07-03 02:02:27 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2020-07-03 02:02:27 +0200 |
commit | d8ced7b070beaa010f557c4c244c5c386d4e6efd (patch) | |
tree | 9f676f5ec4654f5d4b306393b2c35c34e50bdfe4 /code/fe310/eos/eve/screen/font.c | |
parent | f550a31fda2cb7d76e917ab69d075daa1557bf99 (diff) |
str widget draw selection and cursor implemented
Diffstat (limited to 'code/fe310/eos/eve/screen/font.c')
-rw-r--r-- | code/fe310/eos/eve/screen/font.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/code/fe310/eos/eve/screen/font.c b/code/fe310/eos/eve/screen/font.c index ae0ac88..6fc7d39 100644 --- a/code/fe310/eos/eve/screen/font.c +++ b/code/fe310/eos/eve/screen/font.c @@ -14,7 +14,7 @@ void eve_font_init(EVEFont *font, uint8_t font_id) { eve_readb(p, font->w_ch, 128); } -uint16_t eve_font_strw(EVEFont *font, char *s) { +uint16_t eve_font_str_w(EVEFont *font, char *s) { uint16_t r = 0; while (*s) { @@ -25,7 +25,7 @@ uint16_t eve_font_strw(EVEFont *font, char *s) { return r; } -uint16_t eve_font_bufw(EVEFont *font, char *buf, uint16_t buf_len) { +uint16_t eve_font_buf_w(EVEFont *font, char *buf, uint16_t buf_len) { int i; uint16_t r = 0; |