mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-03 03:30:06 +00:00
Added HTTP header retrieval functionality to the URL class. More drawable and Jucer development.
This commit is contained in:
parent
4537a6ec01
commit
1b6eb960e3
47 changed files with 1383 additions and 439 deletions
|
|
@ -785,11 +785,11 @@ int CharacterFunctions::getHexDigitValue (const juce_wchar digit) throw()
|
|||
if (d < (unsigned int) 10)
|
||||
return (int) d;
|
||||
|
||||
d += '0' - 'a';
|
||||
d += (unsigned int) ('0' - 'a');
|
||||
if (d < (unsigned int) 6)
|
||||
return (int) d + 10;
|
||||
|
||||
d += 'a' - 'A';
|
||||
d += (unsigned int) ('a' - 'A');
|
||||
if (d < (unsigned int) 6)
|
||||
return (int) d + 10;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue