summaryrefslogtreecommitdiffhomepage
path: root/src/string/ntapi_tt_strcmp_multibyte.c
blob: c7e4592d39d6d6d4a0be9d875c7f4094ae0057bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/********************************************************/
/*  ntapi: Native API core library                      */
/*  Copyright (C) 2013--2017  Z. Gilboa                 */
/*  Released under GPLv2 and GPLv3; see COPYING.NTAPI.  */
/********************************************************/

#include <psxtypes/psxtypes.h>
#include <ntapi/nt_string.h>
#include "ntapi_impl.h"

int __cdecl __ntapi_tt_strcmp_multibyte(
	__in	const char *	a,
	__in	const char *	b)
{
	for (; (*a == *b) && *a; a++, b++)
		(void)0;

	return (int)*a - (int)*b;
}