]> granicus.if.org Git - php/commitdiff
sync
authorSascha Schumann <sas@php.net>
Mon, 30 Sep 2002 04:59:01 +0000 (04:59 +0000)
committerSascha Schumann <sas@php.net>
Mon, 30 Sep 2002 04:59:01 +0000 (04:59 +0000)
ext/standard/url_scanner_ex.c

index c80aeab616400f38384eb65e96584e8f1dc79b87..414cee236fc994c619a10c2e3f6569cc83684579 100644 (file)
@@ -1,4 +1,4 @@
-/* Generated by re2c 0.5 on Wed Sep 25 14:14:17 2002 */
+/* Generated by re2c 0.5 on Mon Sep 30 06:55:58 2002 */
 #line 1 "/home/sas/src/php4/ext/standard/url_scanner_ex.re"
 /*
   +----------------------------------------------------------------------+
@@ -258,16 +258,16 @@ static void handle_form(STD_PARA)
 
        if (ctx->form_app.len > 0) {
                switch (ctx->tag.len) {
+
+#define RECOGNIZE(x) do {      \
+       case sizeof(x)-1: \
+               if (strncasecmp(ctx->tag.c, x, sizeof(x)-1) == 0) \
+                       doit = 1; \
+               break; \
+} while (0)
                
-                       case sizeof("form")-1:
-                               if (strcasecmp(ctx->tag.c, "form") == 0)
-                                       doit = 1;
-                               break;
-
-                       case sizeof("fieldset")-1:
-                               if (strcasecmp(ctx->tag.c, "fieldset") == 0)
-                                       doit = 1;
-                               break;
+                       RECOGNIZE("form");
+                       RECOGNIZE("fieldset");
                }
 
                if (doit)