Returning the HTTP code to a full string with explanation in different coding languages.
Some examples on how to use the project
Code example for C++
To support the unofficial HTTP Codes uncomment //#define UNOFFICIAL_HTTP_CODES
in http-to-string.hpp
// Include the header
#include http-to-string.hpp
...
// Use it in your code
cout << "[200] " << HTTPToString::httpCode(200) << endl;
cout << "200: " << HTTPToString::httpCodeFull(200) << endl;
Under MIT License