wcscasecmp.3, wcsncasecmp.3: Update feature test macro requirements

The FTM requirements changed in glibc 2.10

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2010-09-15 07:48:15 +02:00
parent 50cbc42b7c
commit df362fbfcc
2 changed files with 26 additions and 4 deletions

View File

@ -10,16 +10,27 @@
.\" Dinkumware C library reference http://www.dinkumware.com/
.\" OpenGroup's Single Unix specification http://www.UNIX-systems.org/online.html
.\"
.TH WCSCASECMP 3 2010-09-10 "GNU" "Linux Programmer's Manual"
.TH WCSCASECMP 3 2010-09-15 "GNU" "Linux Programmer's Manual"
.SH NAME
wcscasecmp \- compare two wide-character strings, ignoring case
.SH SYNOPSIS
.nf
.BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */"
.B #include <wchar.h>
.sp
.BI "int wcscasecmp(const wchar_t *" s1 ", const wchar_t *" s2 );
.fi
.sp
.in -4n
Feature Test Macro Requirements for glibc (see
.BR feature_test_macros (7)):
.in
.sp
.BR wcscasecmp ():
.br
Since glibc 2.10: _POSIX_C_SOURCE >= 200809L || _XOPEN_SOURCE >= 700
.br
Before glibc 2.10:
_GNU_SOURCE
.SH DESCRIPTION
The
.BR wcscasecmp ()

View File

@ -10,16 +10,27 @@
.\" Dinkumware C library reference http://www.dinkumware.com/
.\" OpenGroup's Single Unix specification http://www.UNIX-systems.org/online.html
.\"
.TH WCSNCASECMP 3 2010-09-10 "GNU" "Linux Programmer's Manual"
.TH WCSNCASECMP 3 2010-09-15 "GNU" "Linux Programmer's Manual"
.SH NAME
wcsncasecmp \- compare two fixed-size wide-character strings, ignoring case
.SH SYNOPSIS
.nf
.BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */"
.B #include <wchar.h>
.sp
.BI "int wcsncasecmp(const wchar_t *" s1 ", const wchar_t *" s2 ", size_t " n );
.fi
.sp
.in -4n
Feature Test Macro Requirements for glibc (see
.BR feature_test_macros (7)):
.in
.sp
.BR wcsncasecmp ():
.br
Since glibc 2.10: _POSIX_C_SOURCE >= 200809L || _XOPEN_SOURCE >= 700
.br
Before glibc 2.10:
_GNU_SOURCE
.SH DESCRIPTION
The
.BR wcsncasecmp ()