├── LICENSE.txt ├── examples ├── cmd.c ├── config.c ├── flot │ ├── exchangerates.csv │ ├── flot-anot.c │ ├── flot-error.c │ ├── flot-norm-sample.c │ ├── flot-norm.c │ ├── flot-sine.c │ ├── flot-table.c │ ├── flot-test.c │ ├── lakefile │ ├── makefile │ └── oilprices.csv ├── lakefile ├── llibp.lake ├── llibp.mak ├── make-ex.c ├── makefile ├── mapset.c ├── pkgconfig │ ├── makefile │ └── pkgconfig.c ├── readme.md ├── select │ ├── select.c │ ├── select.h │ └── test-select.c ├── subst.c ├── tempx.c ├── test-rx.c ├── test.cfg ├── test.ctp ├── test.js ├── testa.c ├── testing.c ├── txt2c.c ├── web │ ├── lakefile │ ├── makefile │ ├── simple.c │ └── use-select.c └── words.c ├── llib-p ├── http.c ├── http.h ├── lakefile ├── makefile ├── rx.c ├── rx.h ├── select.c ├── select.h ├── socket.c └── socket.h ├── llib ├── all.h ├── arg.c ├── arg.h ├── array.h ├── build.bat ├── config.c ├── config.h ├── config.ld ├── copy-all ├── dbg.h ├── farr.c ├── farr.h ├── file.c ├── file.h ├── file_fmt.c ├── filew.c ├── flot.c ├── flot.h ├── interface.c ├── interface.h ├── json-data.c ├── json-parse.c ├── json.c ├── json.h ├── lakefile ├── list.c ├── list.h ├── makefile ├── map.c ├── map.h ├── mingw.mak ├── obj.c ├── obj.h ├── pool.c ├── scan.c ├── scan.h ├── seq.c ├── smap.c ├── sort.c ├── str.c ├── str.h ├── table.c ├── table.h ├── template.c ├── template.h ├── value.c ├── value.h ├── xml.c └── xml.h ├── readme.md └── tests ├── build.bat ├── config.cfg ├── hello.txt ├── lakefile ├── makefile ├── mingw.mak ├── test-array.c ├── test-config.c ├── test-file.c ├── test-interface.c ├── test-json.c ├── test-list.c ├── test-map.c ├── test-obj.c ├── test-pool.c ├── test-scan.c ├── test-seq.c ├── test-sqlite3-table.c ├── test-str.c ├── test-table.c ├── test-template.c ├── test-xml.c ├── test.cfg ├── test.csv ├── test.file ├── test.sl3 ├── test.xml ├── test1.dat ├── testa.c └── testing.c /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /examples/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/cmd.c -------------------------------------------------------------------------------- /examples/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/config.c -------------------------------------------------------------------------------- /examples/flot/exchangerates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/flot/exchangerates.csv -------------------------------------------------------------------------------- /examples/flot/flot-anot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/flot/flot-anot.c -------------------------------------------------------------------------------- /examples/flot/flot-error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/flot/flot-error.c -------------------------------------------------------------------------------- /examples/flot/flot-norm-sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/flot/flot-norm-sample.c -------------------------------------------------------------------------------- /examples/flot/flot-norm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/flot/flot-norm.c -------------------------------------------------------------------------------- /examples/flot/flot-sine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/flot/flot-sine.c -------------------------------------------------------------------------------- /examples/flot/flot-table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/flot/flot-table.c -------------------------------------------------------------------------------- /examples/flot/flot-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/flot/flot-test.c -------------------------------------------------------------------------------- /examples/flot/lakefile: -------------------------------------------------------------------------------- 1 | c99.program{P,needs='llib math',defines='STANDALONE_FLOT'} 2 | -------------------------------------------------------------------------------- /examples/flot/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/flot/makefile -------------------------------------------------------------------------------- /examples/flot/oilprices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/flot/oilprices.csv -------------------------------------------------------------------------------- /examples/lakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/lakefile -------------------------------------------------------------------------------- /examples/llibp.lake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/llibp.lake -------------------------------------------------------------------------------- /examples/llibp.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/llibp.mak -------------------------------------------------------------------------------- /examples/make-ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/make-ex.c -------------------------------------------------------------------------------- /examples/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/makefile -------------------------------------------------------------------------------- /examples/mapset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/mapset.c -------------------------------------------------------------------------------- /examples/pkgconfig/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/pkgconfig/makefile -------------------------------------------------------------------------------- /examples/pkgconfig/pkgconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/pkgconfig/pkgconfig.c -------------------------------------------------------------------------------- /examples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/readme.md -------------------------------------------------------------------------------- /examples/select/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/select/select.c -------------------------------------------------------------------------------- /examples/select/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/select/select.h -------------------------------------------------------------------------------- /examples/select/test-select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/select/test-select.c -------------------------------------------------------------------------------- /examples/subst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/subst.c -------------------------------------------------------------------------------- /examples/tempx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/tempx.c -------------------------------------------------------------------------------- /examples/test-rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/test-rx.c -------------------------------------------------------------------------------- /examples/test.cfg: -------------------------------------------------------------------------------- 1 | # hello! 2 | a=20 3 | name=bonzo # heh 4 | 5 | b=2.3 6 | ids=10,11,15 7 | 8 | -------------------------------------------------------------------------------- /examples/test.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/test.ctp -------------------------------------------------------------------------------- /examples/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/test.js -------------------------------------------------------------------------------- /examples/testa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/testa.c -------------------------------------------------------------------------------- /examples/testing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/testing.c -------------------------------------------------------------------------------- /examples/txt2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/txt2c.c -------------------------------------------------------------------------------- /examples/web/lakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/web/lakefile -------------------------------------------------------------------------------- /examples/web/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/web/makefile -------------------------------------------------------------------------------- /examples/web/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/web/simple.c -------------------------------------------------------------------------------- /examples/web/use-select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/web/use-select.c -------------------------------------------------------------------------------- /examples/words.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/examples/words.c -------------------------------------------------------------------------------- /llib-p/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib-p/http.c -------------------------------------------------------------------------------- /llib-p/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib-p/http.h -------------------------------------------------------------------------------- /llib-p/lakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib-p/lakefile -------------------------------------------------------------------------------- /llib-p/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib-p/makefile -------------------------------------------------------------------------------- /llib-p/rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib-p/rx.c -------------------------------------------------------------------------------- /llib-p/rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib-p/rx.h -------------------------------------------------------------------------------- /llib-p/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib-p/select.c -------------------------------------------------------------------------------- /llib-p/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib-p/select.h -------------------------------------------------------------------------------- /llib-p/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib-p/socket.c -------------------------------------------------------------------------------- /llib-p/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib-p/socket.h -------------------------------------------------------------------------------- /llib/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/all.h -------------------------------------------------------------------------------- /llib/arg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/arg.c -------------------------------------------------------------------------------- /llib/arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/arg.h -------------------------------------------------------------------------------- /llib/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/array.h -------------------------------------------------------------------------------- /llib/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/build.bat -------------------------------------------------------------------------------- /llib/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/config.c -------------------------------------------------------------------------------- /llib/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/config.h -------------------------------------------------------------------------------- /llib/config.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/config.ld -------------------------------------------------------------------------------- /llib/copy-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/copy-all -------------------------------------------------------------------------------- /llib/dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/dbg.h -------------------------------------------------------------------------------- /llib/farr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/farr.c -------------------------------------------------------------------------------- /llib/farr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/farr.h -------------------------------------------------------------------------------- /llib/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/file.c -------------------------------------------------------------------------------- /llib/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/file.h -------------------------------------------------------------------------------- /llib/file_fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/file_fmt.c -------------------------------------------------------------------------------- /llib/filew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/filew.c -------------------------------------------------------------------------------- /llib/flot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/flot.c -------------------------------------------------------------------------------- /llib/flot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/flot.h -------------------------------------------------------------------------------- /llib/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/interface.c -------------------------------------------------------------------------------- /llib/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/interface.h -------------------------------------------------------------------------------- /llib/json-data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/json-data.c -------------------------------------------------------------------------------- /llib/json-parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/json-parse.c -------------------------------------------------------------------------------- /llib/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/json.c -------------------------------------------------------------------------------- /llib/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/json.h -------------------------------------------------------------------------------- /llib/lakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/lakefile -------------------------------------------------------------------------------- /llib/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/list.c -------------------------------------------------------------------------------- /llib/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/list.h -------------------------------------------------------------------------------- /llib/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/makefile -------------------------------------------------------------------------------- /llib/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/map.c -------------------------------------------------------------------------------- /llib/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/map.h -------------------------------------------------------------------------------- /llib/mingw.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/mingw.mak -------------------------------------------------------------------------------- /llib/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/obj.c -------------------------------------------------------------------------------- /llib/obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/obj.h -------------------------------------------------------------------------------- /llib/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/pool.c -------------------------------------------------------------------------------- /llib/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/scan.c -------------------------------------------------------------------------------- /llib/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/scan.h -------------------------------------------------------------------------------- /llib/seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/seq.c -------------------------------------------------------------------------------- /llib/smap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/smap.c -------------------------------------------------------------------------------- /llib/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/sort.c -------------------------------------------------------------------------------- /llib/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/str.c -------------------------------------------------------------------------------- /llib/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/str.h -------------------------------------------------------------------------------- /llib/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/table.c -------------------------------------------------------------------------------- /llib/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/table.h -------------------------------------------------------------------------------- /llib/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/template.c -------------------------------------------------------------------------------- /llib/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/template.h -------------------------------------------------------------------------------- /llib/value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/value.c -------------------------------------------------------------------------------- /llib/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/value.h -------------------------------------------------------------------------------- /llib/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/xml.c -------------------------------------------------------------------------------- /llib/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/llib/xml.h -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/readme.md -------------------------------------------------------------------------------- /tests/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/build.bat -------------------------------------------------------------------------------- /tests/config.cfg: -------------------------------------------------------------------------------- 1 | # hello! 2 | a=20 3 | name=bonzo # heh 4 | 5 | b=2.3 6 | ids=10,11,15 7 | 8 | -------------------------------------------------------------------------------- /tests/hello.txt: -------------------------------------------------------------------------------- 1 | Hello, World! 2 | -------------------------------------------------------------------------------- /tests/lakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/lakefile -------------------------------------------------------------------------------- /tests/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/makefile -------------------------------------------------------------------------------- /tests/mingw.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/mingw.mak -------------------------------------------------------------------------------- /tests/test-array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/test-array.c -------------------------------------------------------------------------------- /tests/test-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/test-config.c -------------------------------------------------------------------------------- /tests/test-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/test-file.c -------------------------------------------------------------------------------- /tests/test-interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/test-interface.c -------------------------------------------------------------------------------- /tests/test-json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/test-json.c -------------------------------------------------------------------------------- /tests/test-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/test-list.c -------------------------------------------------------------------------------- /tests/test-map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/test-map.c -------------------------------------------------------------------------------- /tests/test-obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/test-obj.c -------------------------------------------------------------------------------- /tests/test-pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/test-pool.c -------------------------------------------------------------------------------- /tests/test-scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/test-scan.c -------------------------------------------------------------------------------- /tests/test-seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/test-seq.c -------------------------------------------------------------------------------- /tests/test-sqlite3-table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/test-sqlite3-table.c -------------------------------------------------------------------------------- /tests/test-str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/test-str.c -------------------------------------------------------------------------------- /tests/test-table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/test-table.c -------------------------------------------------------------------------------- /tests/test-template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/test-template.c -------------------------------------------------------------------------------- /tests/test-xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/test-xml.c -------------------------------------------------------------------------------- /tests/test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/test.cfg -------------------------------------------------------------------------------- /tests/test.csv: -------------------------------------------------------------------------------- 1 | Name,Age 2 | Bonzo,12 3 | Alice,16 4 | Frodo,46 5 | Bilbo,144 6 | -------------------------------------------------------------------------------- /tests/test.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/test.file -------------------------------------------------------------------------------- /tests/test.sl3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/test.sl3 -------------------------------------------------------------------------------- /tests/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/test.xml -------------------------------------------------------------------------------- /tests/test1.dat: -------------------------------------------------------------------------------- 1 | 1.3 2 5 2.3 2 | 5 2 4 6 0.1 3 | -------------------------------------------------------------------------------- /tests/testa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/testa.c -------------------------------------------------------------------------------- /tests/testing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/llib/HEAD/tests/testing.c --------------------------------------------------------------------------------