Let's say I have a string that is actually bytecode
"90B482"
I need to convert this into an array of char in the following style:
unsigned char converted = { '\x90', '\xB4', '\x82' };
This is going to be consistently calculating, so I need an efficient way to do this, but the only way I have been able to come up with in terms of solving this is writing a massive parsing function