mirror of
https://git.freebsd.org/ports.git
synced 2025-05-29 01:16:28 -04:00
a definition of strcasestr(), which is already provided by our libc's <string.h>. Take over maintainership from Neil Blakey-Milner with many thanks for his work on this and other ports! PR: 34024 Submitted by: Oliver Lehmann <lehmann@ans-netz.de> Approved by: nbm (former maintainer)
19 lines
343 B
C
19 lines
343 B
C
--- autorespond.c Thu Feb 7 12:07:44 2002
|
|
+++ autorespond.c Thu Feb 7 12:07:59 2002
|
|
@@ -377,6 +377,7 @@
|
|
/*********************************************************
|
|
** find string in string - ignore case **/
|
|
|
|
+/*
|
|
char *strcasestr( char *_s1, char *_s2 )
|
|
{
|
|
char *s1;
|
|
@@ -399,7 +400,7 @@
|
|
else
|
|
return _s1 + (ptr - s1);
|
|
}
|
|
-
|
|
+*/
|
|
|
|
|
|
|