User Code List
1
 
 
1
 

/*

* Strip the 0x from the beginning of a hexadecimal value string.

*/

char *

strip_hex(char *line)

{

if (STRNEQ(line, "0x"))

shift_string_left(line, 2);

return(line);

}

 
Sub-Article List