Is there in Windows API or in MFC any analog to atoh()
function?
atoh()
converts a string containing a hexadecimal number into an unsigned number like
unsigned x = atoh("A");
and x = 10 after the operation.
In Windows I have a CString, containing "A". How can I convert it to int?