add hex_decode() to String

This commit is contained in:
bendn
2023-03-06 10:17:33 +07:00
parent 44d539465a
commit ca0feabbb0
6 changed files with 88 additions and 0 deletions

View File

@ -321,6 +321,8 @@ public:
static String chr(char32_t p_char);
static String md5(const uint8_t *p_md5);
static String hex_encode_buffer(const uint8_t *p_buffer, int p_len);
Vector<uint8_t> hex_decode() const;
bool is_numeric() const;
double to_float() const;