├── .build.yml ├── .editorconfig ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── config.h ├── screenshot.png └── tldr.c /.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovmir/tinytldr/HEAD/.build.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovmir/tinytldr/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tldr 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovmir/tinytldr/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovmir/tinytldr/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovmir/tinytldr/HEAD/README.md -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovmir/tinytldr/HEAD/config.h -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovmir/tinytldr/HEAD/screenshot.png -------------------------------------------------------------------------------- /tldr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovmir/tinytldr/HEAD/tldr.c --------------------------------------------------------------------------------