mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:27:45 +00:00
AK: Expose the decode_hex_digit helper
This helper is useful on its own for things like uri encoding/decoding, so this commit exposes it via the AK/Hex header
This commit is contained in:
parent
2d58549296
commit
2ab292f381
2 changed files with 4 additions and 1 deletions
|
@ -35,7 +35,7 @@
|
|||
|
||||
namespace AK {
|
||||
|
||||
static u8 decode_hex_digit(char digit)
|
||||
u8 decode_hex_digit(char digit)
|
||||
{
|
||||
if (digit >= '0' && digit <= '9')
|
||||
return digit - '0';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue