| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | /// @file |
| 4 | /// @brief Include for error to string conversions |
| 5 | |
| 6 | #include <curl/curl.h> |
| 7 | |
| 8 | namespace coeurl { |
| 9 | const char *to_string(CURLcode c); |
| 10 | // const char* to_string(CURLUcode c); |
| 11 | const char *to_string(CURLMcode c); |
| 12 | const char *to_string(CURLSHcode c); |
| 13 | } // namespace coeurl |
| 14 |