From d022d6443c6b7564ae05a3af70035822bccd0b19 Mon Sep 17 00:00:00 2001 From: Alex Bennee Date: Wed, 14 Jul 2010 16:00:32 +0100 Subject: EasyTag 2.1.3 --- src/win32/win32dep.c | 35 ----------------------------------- 1 file changed, 35 deletions(-) mode change 100755 => 100644 src/win32/win32dep.c (limited to 'src/win32/win32dep.c') diff --git a/src/win32/win32dep.c b/src/win32/win32dep.c old mode 100755 new mode 100644 index a644adc..9e400af --- a/src/win32/win32dep.c +++ b/src/win32/win32dep.c @@ -456,38 +456,3 @@ BOOL WINAPI DllMain ( HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved ) ET_dll_hInstance = hinstDLL; return TRUE; } - - -/* - * Copyright (C) 2002 Manuel Novoa III - * Copyright (C) 2000-2005 Erik Andersen - * - * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. - */ - -#include -#include - -char *strcasestr(const char *s1, const char *s2) -{ - register const char *s = s1; - register const char *p = s2; - - do { - if (!*p) { - return (char *) s1;; - } - if ((*p == *s) - || (tolower(*((unsigned char *)p)) == tolower(*((unsigned char *)s))) - ) { - ++p; - ++s; - } else { - p = s2; - if (!*s) { - return NULL; - } - s = ++s1; - } - } while (1); -} \ No newline at end of file -- cgit v1.2.3