#include #include int main(int argc, char *argv[]) { Display *dsp; int n; char **list; dsp = XOpenDisplay(""); list = XGetFontPath(dsp, &n); do { puts(list[-- n]); } while (n); XFreeFontPath(list); XCloseDisplay(dsp); return 0; }