}
- if (isspace ((int) *p)) {
- p = skip_whitespace (p);
- } else if (*p == '"' || *p == '\'') {
+ if (*p == '(' || *skip_whitespace (p) == '(') {
- fprintf (stderr, "%s: *** missing separator (%s must be followed by whitespace). Stop.\n", program_name, ifneq ? "ifneq" : "ifeq");
- exit (EXIT_FAILURE);
-
- }
-
- if (*p == '"' || *p == '\'') {
-
- ch = *p++;
- arg1 = p;
+ arg1 = skip_whitespace (p + 1);
- while (*p != ch) {
+ if (!(comma = strchr (p, ',')) || !(q = strrchr (p, ')')) || q < comma) {
+ goto ifeq_invalid_syntax;
+ }
- if (*p == '\0') {
- goto ifeq_invalid_syntax;
- }
-
- p++;
+ *comma = '\0';
+ *q = '\0';
+ for (q = comma; q > p && isspace ((int) *(q - 1));) {
+ *--q = '\0';
}
- *p = '\0';
- p = skip_whitespace (p + 1);
-
- if (*p != '"' && *p != '\'') {
- goto ifeq_invalid_syntax;
+ for (p = comma + 1; isspace ((int) *p);) {
+ p++;
}
- ch = *p++;
arg2 = p;
- while (*p != ch) {
-
- if (*p == '\0') {
- goto ifeq_invalid_syntax;
- }
-
+ while (*p != '\0') {
p++;
-
}
-
- *p++ = '\0';
- } else if (*p == '(') {
+ } else {
- arg1 = ++p;
+ ch = *p;
- if (!(comma = strchr (p, ',')) || !(q = strrchr (p, ')')) || q < comma) {
+ if (!*(p = skip_whitespace (p))) {
goto ifeq_invalid_syntax;
}
- *comma = '\0';
- *q = '\0';
+ if (!isspace ((int) ch)) {
- for (q = comma; q > p && isspace ((int) *(q - 1));) {
- *--q = '\0';
- }
+ fprintf (stderr, "%s: *** missing separator (%s must be followed by whitespace). Stop.\n", program_name, ifneq ? "ifneq" : "ifeq");
+ exit (EXIT_FAILURE);
- for (p = comma + 1; isspace ((int) *p);) {
- p++;
}
- arg2 = p;
+ if (*p == '"' || *p == '\'') {
+
+ ch = *p++;
+ arg1 = p;
+
+ while (*p != ch) {
+
+ if (*p == '\0') {
+ goto ifeq_invalid_syntax;
+ }
+
+ p++;
+
+ }
+
+ *p = '\0';
+ p = skip_whitespace (p + 1);
+
+ if (*p != '"' && *p != '\'') {
+ goto ifeq_invalid_syntax;
+ }
+
+ ch = *p++;
+ arg2 = p;
+
+ while (*p != ch) {
+
+ if (*p == '\0') {
+ goto ifeq_invalid_syntax;
+ }
+
+ p++;
+
+ }
+
+ *p++ = '\0';
- while (*p != '\0') {
- p++;
}
- } else {
- goto ifeq_invalid_syntax;
}
p = skip_whitespace (p);