summaryrefslogtreecommitdiff
path: root/text_size.c
blob: cbbb671c7fe1d5bae6c29ce97bcb7923a718f700 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "text_size.h"
#include "font.h"
#include <string.h>

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;
}