]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/isalpha.3
CPU_SET.3, INFINITY.3, __ppc_get_timebase.3, __ppc_set_ppr_med.3, __ppc_yield.3,...
[thirdparty/man-pages.git] / man3 / isalpha.3
index 661d4a5be553029dff75d7d7b3b659a4bd1959c5..fbbfa5a68b9dbe6f493224b5bc2daee7199a375d 100644 (file)
@@ -82,12 +82,12 @@ _XOPEN_SOURCE
     || /* Glibc since 2.19: */ _DEFAULT_SOURCE
     || /* Glibc versions <= 2.19: */ _SVID_SOURCE
 .RE
-
+.PP
 .BR isblank ():
 .RS 4
 _ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L
 .RE
-
+.PP
 .BR isalnum_l (),
 .BR isalpha_l (),
 .BR isblank_l (),
@@ -110,7 +110,7 @@ Before glibc 2.10:
 _GNU_SOURCE
 .RE
 .PD
-
+.PP
 .BR isascii_l ():
 .PD 0
 .RS 4
@@ -133,7 +133,7 @@ or
 falls into a certain character class according to the specified locale.
 The functions without the
 "_l" suffix perform the check based on the current locale.
-
+.PP
 The functions with the "_l" suffix perform the check
 based on the locale specified by the locale object
 .IR locale .
@@ -144,7 +144,7 @@ is the special locale object
 (see
 .BR duplocale (3))
 or is not a valid locale object handle.
-
+.PP
 The list below explains the operation of the functions without
 the "_l" suffix;
 the functions with the "_l" suffix differ only in using the locale object
@@ -288,12 +288,12 @@ and
 .BR isblank ().
 C99 specifies all of the preceding functions, except
 .BR isascii ().
-
+.PP
 POSIX.1-2008 marks
 .BR isascii ()
 as obsolete,
 noting that it cannot be used portably in a localized application.
-
+.PP
 POSIX.1-2008 specifies
 .BR isalnum_l (),
 .BR isalpha_l (),
@@ -308,7 +308,7 @@ POSIX.1-2008 specifies
 .BR isupper_l (),
 and
 .BR isxdigit_l ().
-
+.PP
 .BR isascii_l ()
 is a GNU extension.
 .SH NOTES
@@ -325,7 +325,7 @@ is of type
 it must be cast to
 .IR "unsigned char" ,
 as in the following example:
-
+.PP
 .nf
 .in +4n
 char c;
@@ -333,7 +333,7 @@ char c;
 res = toupper((unsigned char) c);
 .in
 .fi
-
+.PP
 This is necessary because
 .I char
 may be the equivalent of
@@ -343,7 +343,7 @@ converting to
 .IR int ,
 yielding a value that is outside the range of
 .IR "unsigned char" .
-
+.PP
 The details of what characters belong to which class depend on the
 locale.
 For example,