Minor updates

git-svn-id: svn://svn.cc65.org/cc65/trunk@594 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2001-01-05 19:25:24 +00:00
parent 8add1ad057
commit 9c02fb3ec0
2 changed files with 14 additions and 6 deletions

View File

@@ -79,9 +79,9 @@ int IsAscii (char C)
int IsBlank (char C)
/* Check for a space, tab or newline */
/* Check for a space or tab */
{
return (C == ' ' || C == '\t' || C == '\n');
return (C == ' ' || C == '\t');
}
@@ -110,6 +110,14 @@ int IsUpper (char C)
int IsBDigit (char C)
/* Check for binary digits (0/1) */
{
return (C == '0' || C == '1');
}
int IsXDigit (char C)
/* Check for hexadecimal digits */
{