Cosmetic changes
git-svn-id: svn://svn.cc65.org/cc65/trunk@1402 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
||||||
/* (C) 1998-2001 Ullrich von Bassewitz */
|
/* (C) 1998-2002 Ullrich von Bassewitz */
|
||||||
/* Wacholderweg 14 */
|
/* Wacholderweg 14 */
|
||||||
/* D-70597 Stuttgart */
|
/* D-70597 Stuttgart */
|
||||||
/* EMail: uz@musoftware.de */
|
/* EMail: uz@musoftware.de */
|
||||||
@@ -226,7 +226,7 @@ static void UnknownChar (char C)
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
static unsigned hexval (int c)
|
static unsigned HexVal (int c)
|
||||||
/* Convert a hex digit into a value */
|
/* Convert a hex digit into a value */
|
||||||
{
|
{
|
||||||
if (!IsXDigit (c)) {
|
if (!IsXDigit (c)) {
|
||||||
@@ -301,9 +301,9 @@ static int ParseChar (void)
|
|||||||
case 'X':
|
case 'X':
|
||||||
/* Hex character constant */
|
/* Hex character constant */
|
||||||
NextChar ();
|
NextChar ();
|
||||||
val = hexval (CurC) << 4;
|
val = HexVal (CurC) << 4;
|
||||||
NextChar ();
|
NextChar ();
|
||||||
C = val | hexval (CurC); /* Do not translate */
|
C = val | HexVal (CurC); /* Do not translate */
|
||||||
break;
|
break;
|
||||||
case '0':
|
case '0':
|
||||||
case '1':
|
case '1':
|
||||||
@@ -456,7 +456,7 @@ void NextToken (void)
|
|||||||
if (IsDigit (CurC)) {
|
if (IsDigit (CurC)) {
|
||||||
k = k * base + (CurC - '0');
|
k = k * base + (CurC - '0');
|
||||||
} else if (base == 16 && IsXDigit (CurC)) {
|
} else if (base == 16 && IsXDigit (CurC)) {
|
||||||
k = (k << 4) + hexval (CurC);
|
k = (k << 4) + HexVal (CurC);
|
||||||
} else {
|
} else {
|
||||||
break; /* not digit */
|
break; /* not digit */
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user