├── .gitignore ├── README.md ├── gpl-3.0.txt └── src ├── http-client-c.h ├── stringx.h └── urlparser.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langhai/http-client-c/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langhai/http-client-c/HEAD/README.md -------------------------------------------------------------------------------- /gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langhai/http-client-c/HEAD/gpl-3.0.txt -------------------------------------------------------------------------------- /src/http-client-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langhai/http-client-c/HEAD/src/http-client-c.h -------------------------------------------------------------------------------- /src/stringx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langhai/http-client-c/HEAD/src/stringx.h -------------------------------------------------------------------------------- /src/urlparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langhai/http-client-c/HEAD/src/urlparser.h --------------------------------------------------------------------------------