mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-16 07:58:04 +00:00
1cf986230d
due to kernel changes.
24 lines
506 B
Plaintext
24 lines
506 B
Plaintext
--- src/mwmutil/mwmutil.c.orig Sun Mar 31 19:49:06 2002
|
|
+++ src/mwmutil/mwmutil.c Sun Mar 31 19:49:52 2002
|
|
@@ -62,20 +62,6 @@
|
|
static int fileSize=0;
|
|
static char file[0x10000];
|
|
|
|
-static char * strcasestr (const char *big, const char *little)
|
|
-{
|
|
-char * p;
|
|
-
|
|
-p = big;
|
|
-while (*p)
|
|
- {
|
|
- if (strncasecmp (p, little, strlen (little)) == 0)
|
|
- return p;
|
|
- p++;
|
|
- }
|
|
-return 0;
|
|
-}
|
|
-
|
|
int readFile(LPCTSTR lpFileName);
|
|
char *getKey(LPCTSTR lpKeyName, LPCTSTR lpSectionName, LPCTSTR lpFileName);
|
|
|