├── .editorconfig ├── .github └── workflows │ └── c-cpp.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── test_getaddrinfo.c ├── test_hosts └── userhosts.c /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figiel/hosts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figiel/hosts/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figiel/hosts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figiel/hosts/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figiel/hosts/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figiel/hosts/HEAD/README.md -------------------------------------------------------------------------------- /test_getaddrinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figiel/hosts/HEAD/test_getaddrinfo.c -------------------------------------------------------------------------------- /test_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figiel/hosts/HEAD/test_hosts -------------------------------------------------------------------------------- /userhosts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figiel/hosts/HEAD/userhosts.c --------------------------------------------------------------------------------