summaryrefslogtreecommitdiffhomepage
path: root/src/string/ntapi_tt_strncmp_multibyte.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/ntapi_tt_strncmp_multibyte.c')
-rw-r--r--src/string/ntapi_tt_strncmp_multibyte.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/string/ntapi_tt_strncmp_multibyte.c b/src/string/ntapi_tt_strncmp_multibyte.c
new file mode 100644
index 0000000..d66865d
--- /dev/null
+++ b/src/string/ntapi_tt_strncmp_multibyte.c
@@ -0,0 +1,22 @@
+/********************************************************/
+/* ntapi: Native API core library */
+/* Copyright (C) 2013--2016 Z. Gilboa */
+/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
+/********************************************************/
+
+#include <psxtypes/psxtypes.h>
+#include <ntapi/nt_string.h>
+
+int __cdecl __ntapi_tt_strncmp_multibyte(
+ __in const char * a,
+ __in const char * b,
+ __in size_t n)
+{
+ if (n == 0)
+ return 0;
+
+ for (--n; n && (*a == *b) && *a; a++, b++)
+ n--;
+
+ return (int)*a - (int)*b;
+}