#include "text_size.h" #include "font.h" #include int text_width(mu_Font font, const char *s, int len) { (void)font, (void)len; return strlen(s) * FONT_W; } int text_height(mu_Font font) { (void)font; return FONT_H; }