字符串转成16进制整数的函数

sscanf(s, "%x", &hex_val);
sprintf(buf, "0x%x", hex_val);

你可能感兴趣的:(字符串转成16进制整数的函数)