added gfxfontlist_free
authorkramm <kramm>
Sat, 20 Oct 2007 17:14:10 +0000 (17:14 +0000)
committerkramm <kramm>
Sat, 20 Oct 2007 17:14:10 +0000 (17:14 +0000)
lib/gfxtools.c
lib/gfxtools.h

index eeb1a7a..dd6b9ad 100644 (file)
@@ -772,6 +772,16 @@ gfxfontlist_t*gfxfontlist_addfont(gfxfontlist_t*list, gfxfont_t*font)
        return l;
     }
 }
+void gfxfontlist_free(gfxfontlist_t*list)
+{
+    gfxfontlist_t*l = list;
+    while(l) {
+       gfxfontlist_t*next = l;
+       memset(l, 0, sizeof(*l));
+       free(l);
+       l = next;
+    }
+}
 
 gfxline_t*gfxline_makerectangle(int x1,int y1,int x2, int y2)
 {
index f24faee..b0f9ce8 100644 (file)
@@ -81,6 +81,7 @@ gfxfontlist_t* gfxfontlist_create();
 gfxfontlist_t*gfxfontlist_addfont(gfxfontlist_t*list, gfxfont_t*font);
 gfxfont_t*gfxfontlist_findfont(gfxfontlist_t*list, char*id);
 char gfxfontlist_hasfont(gfxfontlist_t*list, gfxfont_t*font);
+void gfxfontlist_free(gfxfontlist_t*list);
 
 gfxline_t*gfxline_makerectangle(int x1, int y1, int x2, int y2);
 void gfxline_show(gfxline_t*line, FILE*fi);