├── .gitignore ├── .travis-setup.sh ├── .travis.yml ├── Makefile ├── README.md ├── bitbucket-pipelines.yml ├── envthis.c ├── paththis.c └── shortenthis.c /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /.travis-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiloreux/lazy_tools/HEAD/.travis-setup.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiloreux/lazy_tools/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiloreux/lazy_tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiloreux/lazy_tools/HEAD/README.md -------------------------------------------------------------------------------- /bitbucket-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiloreux/lazy_tools/HEAD/bitbucket-pipelines.yml -------------------------------------------------------------------------------- /envthis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiloreux/lazy_tools/HEAD/envthis.c -------------------------------------------------------------------------------- /paththis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiloreux/lazy_tools/HEAD/paththis.c -------------------------------------------------------------------------------- /shortenthis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiloreux/lazy_tools/HEAD/shortenthis.c --------------------------------------------------------------------------------