head	1.2;
access;
symbols
	RELEASE_6_2_0:1.1
	RELEASE_6_1_0:1.1
	RELEASE_5_5_0:1.1
	RELEASE_6_0_0:1.1
	RELEASE_5_4_0:1.1
	RELEASE_4_11_0:1.1
	RELEASE_5_3_0:1.1
	RELEASE_4_10_0:1.1
	RELEASE_5_2_1:1.1
	RELEASE_5_2_0:1.1
	RELEASE_4_9_0:1.1
	RELEASE_5_1_0:1.1
	RELEASE_4_8_0:1.1
	RELEASE_5_0_0:1.1
	RELEASE_4_7_0:1.1
	RELEASE_4_6_2:1.1
	RELEASE_4_6_1:1.1
	RELEASE_4_6_0:1.1
	RELEASE_5_0_DP1:1.1;
locks; strict;
comment	@# @;


1.2
date	2006.12.12.16.42.34;	author vd;	state dead;
branches;
next	1.1;

1.1
date	2002.04.01.04.00.45;	author kris;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Remove expired ports:
2006-12-01 net/wais: Imported 12 years ago; never completed
2006-12-01 www/w3c-httpd: Does not compile
@
text
@--- Library/Implementation/HTString.c.orig	Sun Mar 31 20:00:59 2002
+++ Library/Implementation/HTString.c	Sun Mar 31 20:01:11 2002
@@@@ -58,41 +58,6 @@@@
 #endif
 
 
-/*
- * strcasestr(s1,s2) -- like strstr(s1,s2) but case-insensitive.
- */
-PUBLIC char * strcasestr ARGS2(char *,	s1,
-			       char *,	s2)
-{
-    char * try = s1;
-
-    if (!s1 || !s2 || !*s2) return s1;
-
-    while (*try) {
-	if (TOUPPER(*try) == TOUPPER(*s2)) {
-	    char * cur1 = try + 1;
-	    char * cur2 = s2 + 1;
-	    while (*cur1 && *cur2 && TOUPPER(*cur1) == TOUPPER(*cur2)) {
-		cur1++;
-		cur2++;
-	    }
-	    if (!*cur2) {
-		CTRACE(stderr,
-	      "Debug....... strcasestr(s1 = \"%s\", s2 = \"%s\") => \"%s\"\n",
-		       s1,s2,try);
-		return try;
-	    }
-	}
-	try++;
-    }
-    CTRACE(stderr,
-	   "Debug....... strcasestr(s1 = \"%s\", s2 = \"%s\") => No match\n",
-	   s1,s2);
-    return NULL;
-}
-
-
-
 /*	Allocate a new copy of a string, and returns it
 */
 PUBLIC char * HTSACopy
@


1.1
log
@Remove internal strcasestr implementation to fix build.
@
text
@@

