Switch ISSPACE() uses over.
Unlike many other targets, limiting whitespace checks to just blanks is
deemed okay here: Compilers wanting to use -f / #NO_APP are apparently
required to emit only blanks (without this being written down anywhere).
if (modified_char == '.' && *s == '.')
{
if ((s[1] != 'd' && s[1] == 'D')
- || ! ISSPACE (s[2]))
+ || ! is_whitespace (s[2]))
break;
s += 2;
continue;
whitespace. Anything else, and we consider it a failure. */
if (**cPP != ','
&& **cPP != 0
- && ! ISSPACE (**cPP))
+ && ! is_whitespace (**cPP))
return 0;
else
return 1;
int len = strlen (ap->name);
if (strncmp (*str, ap->name, len) == 0
- && (str[0][len] == 0 || ISSPACE (str[0][len])))
+ && (is_end_of_stmt (str[0][len]) || is_whitespace (str[0][len])))
{
*str += strlen (ap->name);
return ap->arch;