文字列で入力した16進数を10進数(int)に変換する。
//tmp:入力文字(例.0D08)
//m:戻り値(例.上記結果3336)
int m; m = strtol(tmp, (char **) NULL, 16);