Symbol MC9000-G Product Reference Manual page 292

Hide thumbs Also See for MC9000-G:
Table of Contents

Advertisement

6-42
MC9000-G with Windows
c = c - 'a' + 0xa;
else if (c >= 'A')
c = c - 'A' + 0xa;
else c = c - '0';
if ((c < 0) || (c > 16))
return(FALSE);
*pba = *pba * 16 + c;
}
for (i = 0; i < 8 ; ++i, ++pp)
{
if (!iswxdigit (*pp))
return(FALSE);
int c = *pp;
if (c >= 'a')
else if (c >= 'A')
else c = c - '0';
if ((c < 0) || (c > 16))
*pba = *pba * 16 + c;
}
if ((*pp != ' ') && (*pp != '\0'))
else
}
®
Mobile 2003 Software for Pocket PCs PRG
c = c - 'a' + 0xa;
c = c - 'A' + 0xa;
return(FALSE);
return(FALSE);
return(TRUE);

Hide quick links:

Advertisement

Table of Contents
loading

Table of Contents