Symbol: wcscmp
include/wchar.h
128
int wcscmp(const wchar_t *, const wchar_t *);
lib/libc/hidden/wchar.h
60
PROTO_NORMAL(wcscmp);
lib/libc/locale/wcscoll.c
40
return (wcscmp(s1, s2));
lib/libc/locale/wcscoll_l.c
16
return wcscmp(s1, s2);
lib/libc/string/wcscmp.c
52
DEF_STRONG(wcscmp);
lib/libedit/el.c
608
if (wcscmp(how, L"on") == 0) {
lib/libedit/el.c
611
} else if (wcscmp(how, L"off") == 0) {
lib/libedit/hist.c
163
if (argc == 1 || wcscmp(argv[1], L"list") == 0) {
lib/libedit/hist.c
177
if (wcscmp(argv[1], L"size") == 0)
lib/libedit/hist.c
180
if (wcscmp(argv[1], L"unique") == 0)
lib/libedit/history.c
84
#define Strcmp(d, s) wcscmp(d, s)
lib/libedit/map.c
1090
if (wcscmp(editor, L"emacs") == 0) {
lib/libedit/map.c
1094
if (wcscmp(editor, L"vi") == 0) {
lib/libedit/parse.c
123
if (wcscmp(cmds[i].name, ptr) == 0) {
lib/libedit/parse.c
280
if (wcscmp(b[i].name, cmd) == 0)
lib/libedit/terminal.c
1093
if (wcscmp(name, arrow[i].name) == 0) {
lib/libedit/terminal.c
1112
if (wcscmp(name, arrow[i].name) == 0) {
lib/libedit/terminal.c
1130
if (*name == '\0' || wcscmp(name, arrow[i].name) == 0)
lib/libedit/terminal.c
1478
if (wcscmp(*argv, L"tabs") == 0) {
lib/libedit/terminal.c
1481
} else if (wcscmp(*argv, L"meta") == 0) {
lib/libedit/terminal.c
1484
} else if (wcscmp(*argv, L"xn") == 0) {
lib/libedit/terminal.c
1488
} else if (wcscmp(*argv, L"am") == 0) {
lib/libedit/terminal.c
1492
} else if (wcscmp(*argv, L"baud") == 0) {
lib/libedit/terminal.c
1495
} else if (wcscmp(*argv, L"rows") == 0 ||
lib/libedit/terminal.c
1496
wcscmp(*argv, L"lines") == 0) {
lib/libedit/terminal.c
1499
} else if (wcscmp(*argv, L"cols") == 0) {
lib/libexpat/tests/common.h
65
# define xcstrcmp(s, t) wcscmp((s), (t))
lib/libexpat/tests/structdata.c
54
# define xcstrcmp(s, t) wcscmp((s), (t))
regress/lib/libc/stdio/test_fflush.c
261
assert(wcscmp(buf, L" \u4e16\u754c\n") == 0);
regress/lib/libc/stdio/test_fflush.c
290
assert(wcscmp(buf, L" \u4e16\u754c\n") == 0);
regress/lib/libc/stdio/test_ungetwc.c
76
assert(wcscmp(buf, L" \u4e16\u754c\n") == 0);
regress/lib/libc/wprintf/wfp.c
213
if (wcscmp(result, ws) != 0) {
regress/lib/libedit/keymacro/test_get.c
98
if (wcscmp(val.str, L"repl") != 0)
usr.bin/sort/bwstring.c
120
ret = wcscmp(s1, s2);
usr.bin/sort/coll.c
910
cmp_res = wcscmp(smain1, smain2);
usr.bin/sort/coll.c
914
cmp_res = wcscmp(sfrac1, sfrac2);
usr.bin/watch/watch.c
353
if (wcscmp(cur_line, prev_line)) {