├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── gz-sort.c └── tests ├── _hash.sh ├── _run-all.sh ├── _setup.sh ├── pass-through.sh ├── simple.sh ├── small_buffer.sh ├── small_sort.sh ├── small_unique.sh ├── threaded.sh └── unique.sh /.gitignore: -------------------------------------------------------------------------------- 1 | gz-sort 2 | *.o 3 | *.gz 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenerd/gz-sort/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenerd/gz-sort/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenerd/gz-sort/HEAD/README.md -------------------------------------------------------------------------------- /gz-sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenerd/gz-sort/HEAD/gz-sort.c -------------------------------------------------------------------------------- /tests/_hash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenerd/gz-sort/HEAD/tests/_hash.sh -------------------------------------------------------------------------------- /tests/_run-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenerd/gz-sort/HEAD/tests/_run-all.sh -------------------------------------------------------------------------------- /tests/_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenerd/gz-sort/HEAD/tests/_setup.sh -------------------------------------------------------------------------------- /tests/pass-through.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenerd/gz-sort/HEAD/tests/pass-through.sh -------------------------------------------------------------------------------- /tests/simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenerd/gz-sort/HEAD/tests/simple.sh -------------------------------------------------------------------------------- /tests/small_buffer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenerd/gz-sort/HEAD/tests/small_buffer.sh -------------------------------------------------------------------------------- /tests/small_sort.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenerd/gz-sort/HEAD/tests/small_sort.sh -------------------------------------------------------------------------------- /tests/small_unique.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenerd/gz-sort/HEAD/tests/small_unique.sh -------------------------------------------------------------------------------- /tests/threaded.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenerd/gz-sort/HEAD/tests/threaded.sh -------------------------------------------------------------------------------- /tests/unique.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenerd/gz-sort/HEAD/tests/unique.sh --------------------------------------------------------------------------------