]> git.saurik.com Git - wxWidgets.git/commitdiff
wxStrncmp implementation.
authorOve Kaaven <ovek@arcticnet.no>
Sat, 19 Jun 1999 04:32:35 +0000 (04:32 +0000)
committerOve Kaaven <ovek@arcticnet.no>
Sat, 19 Jun 1999 04:32:35 +0000 (04:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2828 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/wxchar.cpp

index 23bc691780d23ccd8f9bde547f36b1960567467b..db8b5d651e91614957fd24ad4cef81acfe0d3725 100644 (file)
@@ -234,6 +234,16 @@ WXDLLEXPORT wxChar * wxStrncat(wxChar *dest, const wxChar *src, size_t n)
   return ret;
 }
 
+WXDLLEXPORT int wxStrncmp(const wxChar *s1, const wxChar *s2, size_t n)
+{
+  while (n && (*s1 == *s2) && *s1) n--, s1++, s2++;
+  if (n) {
+    if ((wxUChar)*s1 < (wxUChar)*s2) return -1;
+    if ((wxUChar)*s1 > (wxUChar)*s2) return 1;
+  }
+  return 0;
+}
+
 WXDLLEXPORT wxChar * wxStrncpy(wxChar *dest, const wxChar *src, size_t n)
 {
   wxChar *ret = dest;