Include and link physfs properly.
[tuxanci.git] / src / client / fontConfig.h
blob09e75a39110006fa112b254f94f3388b7d908fea
1 #ifndef FONT_CONFIG_H
2 #define FONT_CONFIG_H
4 typedef struct font_config_struct {
5 char *path;
6 char *flag;
7 } font_config_t;
9 extern int fontconfig_init();
10 extern font_config_t *fontconfig_find(char **arg);
11 extern void fontconfig_del_list(font_config_t *list);
12 extern int fontconfig_quit();
14 #endif /* FONT_CONFIG_H */