summaryrefslogtreecommitdiff
path: root/src/wchar/wcsncmp.c
blob: 0caa5a9e157965c28681d6c0862e5efbad80d0cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#if 0

#include <wchar.h>
#include "_safety.h"

int wcsncmp(const wchar_t * s1, const wchar_t * s2, size_t n)
{
	SIGNAL_SAFE(0);

	size_t i;

	ASSERT_NONNULL(s1);
	ASSERT_NONNULL(s2);

	for (i = 0; i < n; i++) {
		if (s1[i] > s2[i]) {
			return 1;
		} else if (s1[i] < s2[i]) {
			return -1;
		}
	}

	return 0;
}

/*
STDC(199409)
*/


#endif