aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/tests/ansi/wmemcmp.c
blob: 74de9bd0d8853af474e12181d4c4007f8d540809 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <assert.h>
#include <wchar.h>
#include <stdlib.h>

int main(void){
    wchar_t *ws1 = calloc(10, sizeof(wchar_t));
    wchar_t *ws2 = calloc(10, sizeof(wchar_t));

    mbstowcs(ws1, "Test 1", 10);
    mbstowcs(ws2, "Tester 2", 10);

    assert(wmemcmp(ws1, ws2, 10) < 0);
    assert(wmemcmp(ws2, ws1, 10) > 0);
    assert(wmemcmp(ws2, ws2, 10) == 0);

	free(ws1);
	free(ws2);
    return 0;
}