* added StrHelper::fromHex()

This commit is contained in:
Scott Powell 2025-11-09 16:17:49 +11:00
parent 1520f4d28e
commit b31d3e7b5f
2 changed files with 21 additions and 0 deletions

View file

@ -13,4 +13,5 @@ public:
static void strzcpy(char* dest, const char* src, size_t buf_sz); // pads with trailing nulls
static const char* ftoa(float f);
static bool isBlank(const char* str);
static uint32_t fromHex(const char* src);
};