summaryrefslogtreecommitdiffhomepage
path: root/src/string/ntapi_tt_strncmp_multibyte.c
blob: 90b85f6a41942fed941090cb5e7e714e617331df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/********************************************************/
/*  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>

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;
}