From 4da310b8d8efddc007f956864948b1eaaf611ab2 Mon Sep 17 00:00:00 2001 From: malc Date: Fri, 12 Aug 2011 22:03:36 +0400 Subject: [PATCH] Mark more things as static --- glfont.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glfont.c b/glfont.c index 46b03c5..5855203 100644 --- a/glfont.c +++ b/glfont.c @@ -294,7 +294,7 @@ static float draw_glyph(FT_Face face, int size, int gid, float x, float y) return glyph->advance; } -float measure_string(FT_Face face, float fsize, char *str) +static float measure_string(FT_Face face, float fsize, char *str) { int size = fsize * 64; FT_Fixed advance; @@ -319,7 +319,7 @@ float measure_string(FT_Face face, float fsize, char *str) return w; } -float draw_string(FT_Face face, float fsize, float x, float y, char *str) +static float draw_string(FT_Face face, float fsize, float x, float y, char *str) { int size = fsize * 64; FT_Vector kern; -- 2.11.4.GIT