0x50, //
0x57, //
0x56, //
0x52, //
0x48, 0xc7, 0xc0, 0x01, 0x00, 0x00, 0x00,
0x48, 0xc7, 0xc6, data_arr[0], data_arr[1], data_arr[2], 0x00,
0x48, 0xc7, 0xc7, 0x01, 0x00, 0x00, 0x00,
0x48, 0xc7, 0xc2, 0x0b, 0x00, 0x00, 0x00,
0xcd, 0x80,
0x5a,
0x5e,
0x5f,
......................
阅读全部
|
gougoudan
贴于 2020年6月11日 14:35
hide
bbsi
// 功能:跳过字符串前导空白与正负符号
// ih: 输入字符串
// cnt: 输入字符个数
const char* __SkipLeadSignBlank(const char ih, unsigned int cnt)
{
const char *s = ih, *h = ih;
do {
const auto c = *s;
if (('-') == c) continue;
if (('+') == c) continue;
if (::isblank(c)) continue;//(c == (' ')) || (c == ('\t'))
if (0 == c) return NULL;
......................
阅读全部
|
gougoudan
贴于 2020年6月11日 10:07
hide
bbsi