summaryrefslogtreecommitdiff
path: root/plugins/Clist_modern/src/modern_utils.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2015-05-22 12:56:56 +0000
committerKirill Volinsky <mataes2007@gmail.com>2015-05-22 12:56:56 +0000
commit2136c7efff71099e8ad1fc2196cd973f2316bc03 (patch)
tree8633b70fe927baaa614febcfe670303070ffcf6b /plugins/Clist_modern/src/modern_utils.cpp
parent7cfd634814762a3cd8a22fce9a4ec6d47bb8f536 (diff)
self strcmp function replaced by core function
git-svn-id: http://svn.miranda-ng.org/main/trunk@13755 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/modern_utils.cpp')
-rw-r--r--plugins/Clist_modern/src/modern_utils.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/plugins/Clist_modern/src/modern_utils.cpp b/plugins/Clist_modern/src/modern_utils.cpp
index ed0739042e..b4116451e7 100644
--- a/plugins/Clist_modern/src/modern_utils.cpp
+++ b/plugins/Clist_modern/src/modern_utils.cpp
@@ -23,25 +23,6 @@ char * __cdecl strstri(char *a, const char *b)
return NULL;
}
-BOOL __cdecl mir_bool_strcmpi(const char *a, const char *b)
-{
- if (a == NULL && b == NULL) return 1;
- if (a == NULL || b == NULL) return _stricmp(a ? a : "", b ? b : "") == 0;
- return _stricmp(a, b) == 0;
-}
-
-BOOL __cdecl mir_bool_tstrcmpi(const TCHAR *a, const TCHAR *b)
-{
- if (a == NULL && b == NULL) return 1;
- if (a == NULL || b == NULL) return _tcsicmp(a ? a : _T(""), b ? b : _T("")) == 0;
- return _tcsicmp(a, b) == 0;
-}
-
-#ifdef mir_strlen
-#undef mir_strcmp
-#undef mir_strlen
-#endif
-
//copy len symbols from string - do not check is it null terminated or len is more then actual
char * strdupn(const char * src, int len)
{