mirror of
https://github.com/curl/curl.git
synced 2026-08-25 12:03:39 +03:00
lib: rename curlx_strtoofft to Curl_str_numblanks()
The function is no longer used via the curlx shortcut. Remove the strtoofft.[ch] files. Closes #16642
This commit is contained in:
parent
fc04eca8f8
commit
09a5b2f2de
17 changed files with 53 additions and 160 deletions
|
|
@ -78,6 +78,9 @@ int Curl_str_singlespace(const char **linep);
|
|||
/* Get an unsigned decimal number. Return non-zero on error */
|
||||
int Curl_str_number(const char **linep, curl_off_t *nump, curl_off_t max);
|
||||
|
||||
/* As above with CURL_OFF_T_MAX but also pass leading blanks */
|
||||
int Curl_str_numblanks(const char **str, curl_off_t *num);
|
||||
|
||||
/* Get an unsigned hexadecimal number. Return non-zero on error */
|
||||
int Curl_str_hex(const char **linep, curl_off_t *nump, curl_off_t max);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue