1destroy_font(3) Allegro manual destroy_font(3)
2
3
4
6 destroy_font - Frees the memory being used by a font structure. Allegro
7 game programming library.
8
10 #include <allegro.h>
11
12
13 void destroy_font(FONT *f);
14
16 Frees the memory being used by a font structure. Don't use this on the
17 default global Allegro font or any text routines using it could crash.
18 You should use this only on fonts you have loaded manually after you
19 are done with them, to prevent memory leaks in your program.
20
21
23 load_datafile_object(3), load_font(3), exfont(3)
24
25
26
27Allegro version 4.4.3 destroy_font(3)