├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── hist └── test ├── Makefile ├── _init.sh ├── run.sh ├── test_exit_codes.sh ├── test_import.sh └── test_search.sh /.travis.yml: -------------------------------------------------------------------------------- 1 | script: make test 2 | language: c 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsalterego/historian/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsalterego/historian/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsalterego/historian/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsalterego/historian/HEAD/README.md -------------------------------------------------------------------------------- /hist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsalterego/historian/HEAD/hist -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsalterego/historian/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsalterego/historian/HEAD/test/_init.sh -------------------------------------------------------------------------------- /test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsalterego/historian/HEAD/test/run.sh -------------------------------------------------------------------------------- /test/test_exit_codes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsalterego/historian/HEAD/test/test_exit_codes.sh -------------------------------------------------------------------------------- /test/test_import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsalterego/historian/HEAD/test/test_import.sh -------------------------------------------------------------------------------- /test/test_search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcsalterego/historian/HEAD/test/test_search.sh --------------------------------------------------------------------------------