├── .dockerignore ├── .gitignore ├── LICENSE ├── Makefile ├── main.c └── readme.md /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidewhy/smell-baron/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidewhy/smell-baron/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidewhy/smell-baron/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidewhy/smell-baron/HEAD/Makefile -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidewhy/smell-baron/HEAD/main.c -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidewhy/smell-baron/HEAD/readme.md --------------------------------------------------------------------------------