mirror of
https://github.com/curl/curl.git
synced 2026-08-24 15:13:33 +03:00
convert Curl_ultous() and Curl_ultouc() functions to curlx_ultous() and
curlx_ultouc(), exposing them through curlx.h to allow proper code reuse later in our test harness.
This commit is contained in:
parent
693abbae3a
commit
439f62bfa8
9 changed files with 56 additions and 92 deletions
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
#include "warnless.h"
|
||||
|
||||
unsigned short Curl_ultous(unsigned long ulnum)
|
||||
unsigned short curlx_ultous(unsigned long ulnum)
|
||||
{
|
||||
#ifdef __INTEL_COMPILER
|
||||
# pragma warning(push)
|
||||
|
|
@ -39,7 +39,7 @@ unsigned short Curl_ultous(unsigned long ulnum)
|
|||
#endif
|
||||
}
|
||||
|
||||
unsigned char Curl_ultouc(unsigned long ulnum)
|
||||
unsigned char curlx_ultouc(unsigned long ulnum)
|
||||
{
|
||||
#ifdef __INTEL_COMPILER
|
||||
# pragma warning(push)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue