aboutsummaryrefslogtreecommitdiff
path: root/font.h
diff options
context:
space:
mode:
authorRiley Beckett <rbeckettvt@gmail.com>2025-10-23 00:07:26 -0400
committerRiley Beckett <rbeckettvt@gmail.com>2025-10-23 00:07:26 -0400
commit9d8db4146d025e3a967700414a9fc68fa186045e (patch)
tree9d0e0d6dd46a2f580f4b2fb4e1fbba2b0c6fb11e /font.h
parent90d6b2a866c6da29921dfae3d684203fd232ea74 (diff)
add basic cursor movement
Diffstat (limited to 'font.h')
-rw-r--r--font.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/font.h b/font.h
index fe77e17..dee3129 100644
--- a/font.h
+++ b/font.h
@@ -8,5 +8,6 @@ void atlas_init(client_state* state);
void atlas_create_texture(client_state* state);
int atlas_get_strwidth(client_state* state, const char* str);
+int atlas_get_strwidth_len(client_state* state, const char* str, size_t len);
void atlas_calc_item_widths(client_state* state);
#endif // FONT_H_