#define s3_BAD_SKIP_COMMA s3_BAD_ARGS
#define s3_BAD_GARBAGE _("garbage following instruction");
-#define s3_skip_whitespace(str) while (*(str) == ' ') ++(str)
+#define s3_skip_whitespace(str) while (is_whitespace (*(str))) ++(str)
/* The name of the readonly data section. */
#define s3_RDATA_SECTION_NAME (OUTPUT_FLAVOR == bfd_target_aout_flavour \
char c;
int comma = 0;
- while ((c = *p) == ' ' || c == ',')
+ while (is_whitespace (c = *p) || c == ',')
{
p++;
if (c == ',' && comma++)
for (; *dataptr != '\0'; dataptr++)
{
*dataptr = TOLOWER (*dataptr);
- if (*dataptr == '!' || *dataptr == ' ')
+ if (*dataptr == '!' || is_whitespace (*dataptr))
break;
}
dataptr = (char *)data_exp;
s3_skip_whitespace (operator);
for (p = operator; *p != '\0'; p++)
- if ((*p == ' ') || (*p == '!'))
+ if (is_whitespace (*p) || (*p == '!'))
break;
if (*p == '!')
s3_skip_whitespace (operator);
for (p = operator; *p != '\0'; p++)
- if (*p == ' ')
+ if (is_whitespace (*p))
break;
c = *p;
#define s7_BAD_SKIP_COMMA s7_BAD_ARGS
#define s7_BAD_GARBAGE _("garbage following instruction");
-#define s7_skip_whitespace(str) while (*(str) == ' ') ++(str)
+#define s7_skip_whitespace(str) while (is_whitespace (*(str))) ++(str)
/* The name of the readonly data section. */
#define s7_RDATA_SECTION_NAME (OUTPUT_FLAVOR == bfd_target_aout_flavour \
char c;
int comma = 0;
- while ((c = *p) == ' ' || c == ',')
+ while (is_whitespace (c = *p) || c == ',')
{
p++;
if (c == ',' && comma++)
for (; *dataptr != '\0'; dataptr++)
{
*dataptr = TOLOWER (*dataptr);
- if (*dataptr == '!' || *dataptr == ' ')
+ if (*dataptr == '!' || is_whitespace (*dataptr))
break;
}
dataptr = (char *) data_exp;
s7_skip_whitespace (operator);
for (p = operator; *p != '\0'; p++)
- if ((*p == ' ') || (*p == '!'))
+ if (is_whitespace (*p) || (*p == '!'))
break;
if (*p == '!')