├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── compile.sh └── lk-reducer.c /.gitignore: -------------------------------------------------------------------------------- 1 | cleanmysourcetree 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jduck/lk-reducer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jduck/lk-reducer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jduck/lk-reducer/HEAD/README.md -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | make 4 | -------------------------------------------------------------------------------- /lk-reducer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jduck/lk-reducer/HEAD/lk-reducer.c --------------------------------------------------------------------------------