├── .gitignore ├── Makefile ├── Makefile.kbox ├── README.md ├── README_epub2txt.html ├── dependencies.mak ├── dependencies_klib.mak ├── epub2txt.c ├── epub2txt.h ├── epub2txt.man.html ├── klib_buffer.c ├── klib_buffer.h ├── klib_convertutf.c ├── klib_convertutf.h ├── klib_defs.h ├── klib_error.c ├── klib_error.h ├── klib_getopt.c ├── klib_getopt.h ├── klib_getoptspec.c ├── klib_getoptspec.h ├── klib_list.c ├── klib_list.h ├── klib_log.c ├── klib_log.h ├── klib_object.c ├── klib_object.h ├── klib_path.c ├── klib_path.h ├── klib_string.c ├── klib_string.h ├── klib_wstring.c ├── klib_wstring.h ├── klib_xml.c ├── klib_xml.h ├── main.c ├── makeman.pl ├── man1 └── epub2txt.1 ├── sxmlc.c ├── sxmlc.h ├── sxmlsearch.c ├── sxmlsearch.h ├── sxmlutils.c └── sxmlutils.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | epub2txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.kbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/Makefile.kbox -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/README.md -------------------------------------------------------------------------------- /README_epub2txt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/README_epub2txt.html -------------------------------------------------------------------------------- /dependencies.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/dependencies.mak -------------------------------------------------------------------------------- /dependencies_klib.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/dependencies_klib.mak -------------------------------------------------------------------------------- /epub2txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/epub2txt.c -------------------------------------------------------------------------------- /epub2txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/epub2txt.h -------------------------------------------------------------------------------- /epub2txt.man.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/epub2txt.man.html -------------------------------------------------------------------------------- /klib_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_buffer.c -------------------------------------------------------------------------------- /klib_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_buffer.h -------------------------------------------------------------------------------- /klib_convertutf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_convertutf.c -------------------------------------------------------------------------------- /klib_convertutf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_convertutf.h -------------------------------------------------------------------------------- /klib_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_defs.h -------------------------------------------------------------------------------- /klib_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_error.c -------------------------------------------------------------------------------- /klib_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_error.h -------------------------------------------------------------------------------- /klib_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_getopt.c -------------------------------------------------------------------------------- /klib_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_getopt.h -------------------------------------------------------------------------------- /klib_getoptspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_getoptspec.c -------------------------------------------------------------------------------- /klib_getoptspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_getoptspec.h -------------------------------------------------------------------------------- /klib_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_list.c -------------------------------------------------------------------------------- /klib_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_list.h -------------------------------------------------------------------------------- /klib_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_log.c -------------------------------------------------------------------------------- /klib_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_log.h -------------------------------------------------------------------------------- /klib_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_object.c -------------------------------------------------------------------------------- /klib_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_object.h -------------------------------------------------------------------------------- /klib_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_path.c -------------------------------------------------------------------------------- /klib_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_path.h -------------------------------------------------------------------------------- /klib_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_string.c -------------------------------------------------------------------------------- /klib_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_string.h -------------------------------------------------------------------------------- /klib_wstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_wstring.c -------------------------------------------------------------------------------- /klib_wstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_wstring.h -------------------------------------------------------------------------------- /klib_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_xml.c -------------------------------------------------------------------------------- /klib_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/klib_xml.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/main.c -------------------------------------------------------------------------------- /makeman.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/makeman.pl -------------------------------------------------------------------------------- /man1/epub2txt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/man1/epub2txt.1 -------------------------------------------------------------------------------- /sxmlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/sxmlc.c -------------------------------------------------------------------------------- /sxmlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/sxmlc.h -------------------------------------------------------------------------------- /sxmlsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/sxmlsearch.c -------------------------------------------------------------------------------- /sxmlsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/sxmlsearch.h -------------------------------------------------------------------------------- /sxmlutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/sxmlutils.c -------------------------------------------------------------------------------- /sxmlutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinboone/epub2txt/HEAD/sxmlutils.h --------------------------------------------------------------------------------