├── .gitignore ├── Makefile ├── README.md ├── cgiserver.c └── pages └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | cgiserver 2 | pages 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klange/cgiserver/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klange/cgiserver/HEAD/README.md -------------------------------------------------------------------------------- /cgiserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klange/cgiserver/HEAD/cgiserver.c -------------------------------------------------------------------------------- /pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klange/cgiserver/HEAD/pages/index.html --------------------------------------------------------------------------------