├── .gitignore ├── LICENSE ├── Makefile ├── README.txt ├── casemap.py ├── cgblorb.c ├── cgdate.c ├── cgfref.c ├── cggestal.c ├── cgmisc.c ├── cgschan.c ├── cgstream.c ├── cgstyle.c ├── cgunicod.c ├── cgunigen.c ├── cgwindow.c ├── cheapglk.h ├── gi_blorb.c ├── gi_blorb.h ├── gi_debug.c ├── gi_debug.h ├── gi_dispa.c ├── gi_dispa.h ├── glk.h ├── glkstart.c ├── glkstart.h └── main.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.a 3 | Make.* 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/Makefile -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/README.txt -------------------------------------------------------------------------------- /casemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/casemap.py -------------------------------------------------------------------------------- /cgblorb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/cgblorb.c -------------------------------------------------------------------------------- /cgdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/cgdate.c -------------------------------------------------------------------------------- /cgfref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/cgfref.c -------------------------------------------------------------------------------- /cggestal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/cggestal.c -------------------------------------------------------------------------------- /cgmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/cgmisc.c -------------------------------------------------------------------------------- /cgschan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/cgschan.c -------------------------------------------------------------------------------- /cgstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/cgstream.c -------------------------------------------------------------------------------- /cgstyle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/cgstyle.c -------------------------------------------------------------------------------- /cgunicod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/cgunicod.c -------------------------------------------------------------------------------- /cgunigen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/cgunigen.c -------------------------------------------------------------------------------- /cgwindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/cgwindow.c -------------------------------------------------------------------------------- /cheapglk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/cheapglk.h -------------------------------------------------------------------------------- /gi_blorb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/gi_blorb.c -------------------------------------------------------------------------------- /gi_blorb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/gi_blorb.h -------------------------------------------------------------------------------- /gi_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/gi_debug.c -------------------------------------------------------------------------------- /gi_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/gi_debug.h -------------------------------------------------------------------------------- /gi_dispa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/gi_dispa.c -------------------------------------------------------------------------------- /gi_dispa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/gi_dispa.h -------------------------------------------------------------------------------- /glk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/glk.h -------------------------------------------------------------------------------- /glkstart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/glkstart.c -------------------------------------------------------------------------------- /glkstart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/glkstart.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erkyrath/cheapglk/HEAD/main.c --------------------------------------------------------------------------------