quran: add quran parsing support
[cnoor.git] / cnoor.c
blob97e3f62a2b4a0ab25eae2fed4cda07bd19348469
1 #include "txtwin.h"
3 int main(int argc, char **argv)
5 struct txtwin *tw;
6 txtwin_gtk_init(argc, argv);
7 tw = txtwin_alloc();
8 txtwin_loop(tw);
9 txtwin_free(tw);
10 return 0;