From 060eadf4e7f81c2d2da4f6c4b2f019186c47ec57 Mon Sep 17 00:00:00 2001 From: midipix Date: Tue, 28 Jun 2016 15:33:11 -0400 Subject: string functions: added __ntapi_tt_strcmp_utf16(). --- src/string/ntapi_tt_strcmp_utf16.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/string/ntapi_tt_strcmp_utf16.c (limited to 'src/string') diff --git a/src/string/ntapi_tt_strcmp_utf16.c b/src/string/ntapi_tt_strcmp_utf16.c new file mode 100644 index 0000000..b083d12 --- /dev/null +++ b/src/string/ntapi_tt_strcmp_utf16.c @@ -0,0 +1,18 @@ +/********************************************************/ +/* ntapi: Native API core library */ +/* Copyright (C) 2013--2016 Z. Gilboa */ +/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */ +/********************************************************/ + +#include +#include + +int __cdecl __ntapi_tt_strcmp_utf16( + __in const wchar16_t * a, + __in const wchar16_t * b) +{ + for (; (*a == *b) && *a; a++, b++) + (void)0; + + return (int)*a - (int)*b; +} -- cgit v1.2.3