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