Added command line response files
git-svn-id: svn://svn.cc65.org/cc65/trunk@616 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -86,6 +86,14 @@ int IsBlank (char C)
|
||||
|
||||
|
||||
|
||||
int IsSpace (char C)
|
||||
/* Check for any white space characters */
|
||||
{
|
||||
return (C == ' ' || C == '\n' || C == '\r' || C == '\t' || C == '\v' || C == '\f');
|
||||
}
|
||||
|
||||
|
||||
|
||||
int IsDigit (char C)
|
||||
/* Check for a digit */
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user