curlx: rename Curl_-prefixed symbols to curlx_

Closes #20069
This commit is contained in:
Viktor Szakats 2025-12-22 00:48:33 +01:00
parent 6e6fafa9b0
commit d92e264ff0
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
7 changed files with 19 additions and 19 deletions

View file

@ -136,12 +136,12 @@ int curlx_str_singlespace(const char **linep)
/* given an ASCII character and max ascii, return TRUE if valid */
#define valid_digit(x, m) \
(((x) >= '0') && ((x) <= m) && Curl_hexasciitable[(x) - '0'])
(((x) >= '0') && ((x) <= m) && curlx_hexasciitable[(x) - '0'])
/* We use 16 for the zero index (and the necessary bitwise AND in the loop)
to be able to have a non-zero value there to make valid_digit() able to
use the info */
const unsigned char Curl_hexasciitable[] = {
const unsigned char curlx_hexasciitable[] = {
16, 1, 2, 3, 4, 5, 6, 7, 8, 9, /* 0x30: 0 - 9 */
0, 0, 0, 0, 0, 0, 0,
10, 11, 12, 13, 14, 15, /* 0x41: A - F */
@ -167,7 +167,7 @@ static int str_num_base(const char **linep, curl_off_t *nump, curl_off_t max,
if(max < base) {
/* special-case low max scenario because check needs to be different */
do {
int n = Curl_hexval(*p++);
int n = curlx_hexval(*p++);
num = num * base + n;
if(num > max)
return STRE_OVERFLOW;
@ -175,7 +175,7 @@ static int str_num_base(const char **linep, curl_off_t *nump, curl_off_t max,
}
else {
do {
int n = Curl_hexval(*p++);
int n = curlx_hexval(*p++);
if(num > ((max - n) / base))
return STRE_OVERFLOW;
num = num * base + n;