summaryrefslogtreecommitdiffstats
path: root/src/text.h
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-07-17 21:09:12 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-07-17 21:09:12 (EDT)
commitd178ff96b8ae52b834c2f627744f50fde0472f59 (patch)
tree910f4d9d8817e3277745938b7966f85275ba4a2f /src/text.h
parentde936a72906d75ab24f818f0b9a9a11e4d23e428 (diff)
text_*(): Store dimensions as size_t
Diffstat (limited to 'src/text.h')
-rw-r--r--src/text.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/text.h b/src/text.h
index e3596c3..86da775 100644
--- a/src/text.h
+++ b/src/text.h
@@ -31,10 +31,10 @@ struct text;
struct text *
text_new(const char *string);
-int
+size_t
text_get_width(struct text *text) __attribute__((pure));
-int
+size_t
text_get_height(struct text *text) __attribute__((pure));
void