Index: pwntcha/trunk/src/common.h
===================================================================
--- pwntcha/trunk/src/common.h	(revision 446)
+++ pwntcha/trunk/src/common.h	(revision 448)
@@ -26,5 +26,7 @@
         int xmin, xmax, ymin, ymax;
         int count; /* Black pixel count */
+        char c;
     } *glyphs;
+    int size;
 };
 
@@ -58,4 +60,9 @@
 int setpixel(struct image *img, int x, int y, int r, int g, int b);
 
+/* font operations */
+struct font *font_load_fixed(char *file, char *chars);
+struct font *font_load_variable(char *file, char *chars);
+void font_free(struct font *font);
+
 /* image filters */
 void filter_flood_fill(struct image *img, int x, int y, int r, int g, int b);
