wcscasecmpのヘルプ・マニュアル
日本語 英語
wcscasecmp --help
man wcscasecmp
WCSCASECMP(3) Linux Programmer’s Manual WCSCASECMP(3)
名前
wcscasecmp - ワイド文字列を比較する。大文字と小文字を区別しない。
書式
#define _GNU_SOURCE
#include
int wcscasecmp(const wchar_t *s1, const wchar_t *s2);
説明
wcscasecmp() 関数は、 strcasecmp(3) 関数に対応するワイド文字関数である
。この関数は、s1 が指すワイド文字文字列と s2 が指すワイド文字文字列を、
大文字と小文字の違い (towupper(3), towlower(3)) を無視して比較する。
返り値
wcscasecmp() 関数は、s1 と s2 が指すワイド文字列を大文字と小文字の違い
を無視して比較した時に、等しければ 0 を返す。大文字と小文字の違いを無視
し て s1 の方が s2 より大きければ正の整数を返す。大文字と小文字の違いを
無視して s1 の方が s2 より小さければ負の整数を返す。
準拠
POSIX.1-2008. この関数は POSIX.1-2001 では規定されていないが 、 Linux
以外の他のシステムで広く利用可能である。
注意
wcscasecmp() の動作は、現在のロケールの LC_CTYPE に依存する。
関連項目
strcasecmp(3), wcscmp(3)
GNU 2009-02-04 WCSCASECMP(3)
WCSCASECMP(3) Linux Programmer’s Manual WCSCASECMP(3)
NAME
wcscasecmp - compare two wide-character strings, ignoring case
SYNOPSIS
#define _GNU_SOURCE
#include
int wcscasecmp(const wchar_t *s1, const wchar_t *s2);
DESCRIPTION
The wcscasecmp() function is the wide-character equivalent of the str-
casecmp(3) function. It compares the wide-character string pointed to
by s1 and the wide-character string pointed to by s2, ignoring case
differences (towupper(3), towlower(3)).
RETURN VALUE
The wcscasecmp() function returns zero if the wide-character strings at
s1 and s2 are equal except for case distinctions. It returns a posi-
tive integer if s1 is greater than s2, ignoring case. It returns a
negative integer if s1 is smaller than s2, ignoring case.
CONFORMING TO
POSIX.1-2008. This function is not specified in POSIX.1-2001, and is
not widely available on other systems.
NOTES
The behavior of wcscasecmp() depends on the LC_CTYPE category of the
current locale.
SEE ALSO
strcasecmp(3), wcscmp(3)
COLOPHON
This page is part of release 3.22 of the Linux man-pages project. A
description of the project, and information about reporting bugs, can
be found at http://www.kernel.org/doc/man-pages/.
GNU 2009-02-04 WCSCASECMP(3)