├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.adoc ├── ZZZ.8.adoc ├── zzz.8.adoc └── zzz.c /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/zzz/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/zzz/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | *.html 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/zzz/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/zzz/HEAD/Makefile -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/zzz/HEAD/README.adoc -------------------------------------------------------------------------------- /ZZZ.8.adoc: -------------------------------------------------------------------------------- 1 | zzz.8.adoc -------------------------------------------------------------------------------- /zzz.8.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/zzz/HEAD/zzz.8.adoc -------------------------------------------------------------------------------- /zzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/zzz/HEAD/zzz.c --------------------------------------------------------------------------------