mirror of
https://github.com/curl/curl.git
synced 2026-08-24 13:03:35 +03:00
mprintf: provide hex digits for escape.c to use
Since they need the exact same set, use the same set. The mprintf string was longer than it had to be. Closes #17311
This commit is contained in:
parent
1eb3928db6
commit
f862f863bf
3 changed files with 13 additions and 8 deletions
|
|
@ -30,6 +30,12 @@
|
|||
#define MERR_MEM 1
|
||||
#define MERR_TOO_LARGE 2
|
||||
|
||||
/* Lower-case digits. */
|
||||
extern const unsigned char Curl_ldigits[];
|
||||
|
||||
/* Upper-case digits. */
|
||||
extern const unsigned char Curl_udigits[];
|
||||
|
||||
#ifdef BUILDING_LIBCURL
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue