.. highlightlang:: us .. index:: curl_easy_strerror .. _curl_easy_strerror: curl_easy_strerror ================== .. us.tag curl_easy_strerror NOTREADYENGLISH Curl New5700 :ref:`curl_easy_strerror` returns the error description for an error code. .. function:: errorStr = curl_easy_strerror(errorCode) .. us.return **Return Value** *errorStr* is the error string. .. us.params **Parameters** .. uparam:: errorCode *errorCode* is the error code returned by :ref:`curl_easy_perform`. .. us.example **Example** :: * curl_easy_strerror(0) No error * curl_easy_strerror(7) Couldn't connect to server * curl_easy_strerror(709809) Unknown error .. us.history **History** .. list-table:: :header-rows: 1 * - Version - Description * - R2015.0 - New. .. seealso:: :ref:`overview-curl`, :ref:`curl_easy_init` :sub:`id-2087641`