strtol is very slow for my program which I want it to be very fast
so for example I have this string:
PCHAR ex = "\x55\xEC" etc...
They're hex, so If I want to write it without the "\x" to be like "55 EC" etc.. I have to use strtol, but strtol is EXTREMELY slow for my program I want the fastest one on my program..
I use strtol like (CHAR)strtol(ex, &ex, 16);
Mind helping me please?