summaryrefslogtreecommitdiffstats
path: root/lib/libc/locale
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2005-11-17 13:00:00 +0000
committerru <ru@FreeBSD.org>2005-11-17 13:00:00 +0000
commit928d297eeb1b1084c1525eb3aba0cee109fed2b6 (patch)
tree8357787c5962631f6dc96a7483518171f91c2b20 /lib/libc/locale
parentbe367893cde807eabde21d3c27468e630a24c071 (diff)
downloadFreeBSD-src-928d297eeb1b1084c1525eb3aba0cee109fed2b6.zip
FreeBSD-src-928d297eeb1b1084c1525eb3aba0cee109fed2b6.tar.gz
-mdoc sweep.
Diffstat (limited to 'lib/libc/locale')
-rw-r--r--lib/libc/locale/isalnum.32
-rw-r--r--lib/libc/locale/isalpha.32
-rw-r--r--lib/libc/locale/isblank.32
-rw-r--r--lib/libc/locale/iscntrl.32
-rw-r--r--lib/libc/locale/isdigit.32
-rw-r--r--lib/libc/locale/isgraph.32
-rw-r--r--lib/libc/locale/islower.32
-rw-r--r--lib/libc/locale/isprint.32
-rw-r--r--lib/libc/locale/ispunct.32
-rw-r--r--lib/libc/locale/isspace.32
-rw-r--r--lib/libc/locale/isupper.32
-rw-r--r--lib/libc/locale/isxdigit.32
-rw-r--r--lib/libc/locale/tolower.32
-rw-r--r--lib/libc/locale/toupper.32
14 files changed, 14 insertions, 14 deletions
diff --git a/lib/libc/locale/isalnum.3 b/lib/libc/locale/isalnum.3
index 02e2dd2..d550485 100644
--- a/lib/libc/locale/isalnum.3
+++ b/lib/libc/locale/isalnum.3
@@ -57,7 +57,7 @@ or
.Xr isdigit 3
is true.
The value of the argument must be representable as an
-.Vt unsigned char
+.Vt "unsigned char"
or the value of
.Dv EOF .
.Pp
diff --git a/lib/libc/locale/isalpha.3 b/lib/libc/locale/isalpha.3
index 0959149..1996059 100644
--- a/lib/libc/locale/isalpha.3
+++ b/lib/libc/locale/isalpha.3
@@ -57,7 +57,7 @@ or
.Xr islower 3
is true.
The value of the argument must be representable as an
-.Vt unsigned char
+.Vt "unsigned char"
or the value of
.Dv EOF .
.Pp
diff --git a/lib/libc/locale/isblank.3 b/lib/libc/locale/isblank.3
index a027cd6..2af673a 100644
--- a/lib/libc/locale/isblank.3
+++ b/lib/libc/locale/isblank.3
@@ -58,7 +58,7 @@ In the "C" locale
.Fn isblank
successful test is limited to this characters only.
The value of the argument must be representable as an
-.Vt unsigned char
+.Vt "unsigned char"
or the value of
.Dv EOF .
.Sh RETURN VALUES
diff --git a/lib/libc/locale/iscntrl.3 b/lib/libc/locale/iscntrl.3
index 25e8954..e8b537b 100644
--- a/lib/libc/locale/iscntrl.3
+++ b/lib/libc/locale/iscntrl.3
@@ -53,7 +53,7 @@ The
.Fn iscntrl
function tests for any control character.
The value of the argument must be representable as an
-.Vt unsigned char
+.Vt "unsigned char"
or the value of
.Dv EOF .
.Pp
diff --git a/lib/libc/locale/isdigit.3 b/lib/libc/locale/isdigit.3
index 2505743..8bcf083 100644
--- a/lib/libc/locale/isdigit.3
+++ b/lib/libc/locale/isdigit.3
@@ -69,7 +69,7 @@ but may recognize additional characters, depending on the current locale
setting.
.Pp
The value of the argument must be representable as an
-.Vt unsigned char
+.Vt "unsigned char"
or the value of
.Dv EOF .
.Sh RETURN VALUES
diff --git a/lib/libc/locale/isgraph.3 b/lib/libc/locale/isgraph.3
index 632610b..f5cc2eb 100644
--- a/lib/libc/locale/isgraph.3
+++ b/lib/libc/locale/isgraph.3
@@ -56,7 +56,7 @@ function tests for any printing character except space
and other
locale specific space-like characters.
The value of the argument must be representable as an
-.Vt unsigned char
+.Vt "unsigned char"
or the value of
.Dv EOF .
.Pp
diff --git a/lib/libc/locale/islower.3 b/lib/libc/locale/islower.3
index bf9bcef..5d7c378 100644
--- a/lib/libc/locale/islower.3
+++ b/lib/libc/locale/islower.3
@@ -53,7 +53,7 @@ The
.Fn islower
function tests for any lower-case letters.
The value of the argument must be representable as an
-.Vt unsigned char
+.Vt "unsigned char"
or the value of
.Dv EOF .
.Pp
diff --git a/lib/libc/locale/isprint.3 b/lib/libc/locale/isprint.3
index a01f863..5217f13 100644
--- a/lib/libc/locale/isprint.3
+++ b/lib/libc/locale/isprint.3
@@ -54,7 +54,7 @@ The
function tests for any printing character including space
.Pq Ql "\ " .
The value of the argument must be representable as an
-.Vt unsigned char
+.Vt "unsigned char"
or the value of
.Dv EOF .
.Pp
diff --git a/lib/libc/locale/ispunct.3 b/lib/libc/locale/ispunct.3
index 2ae06ed..80acf15 100644
--- a/lib/libc/locale/ispunct.3
+++ b/lib/libc/locale/ispunct.3
@@ -58,7 +58,7 @@ character for which
.Xr isalnum 3
is true.
The value of the argument must be representable as an
-.Vt unsigned char
+.Vt "unsigned char"
or the value of
.Dv EOF .
.Pp
diff --git a/lib/libc/locale/isspace.3 b/lib/libc/locale/isspace.3
index 13f06bf..5a77015 100644
--- a/lib/libc/locale/isspace.3
+++ b/lib/libc/locale/isspace.3
@@ -62,7 +62,7 @@ In the "C" locale
.Fn isspace
successful test is limited to this characters only.
The value of the argument must be representable as an
-.Vt unsigned char
+.Vt "unsigned char"
or the value of
.Dv EOF .
.Sh RETURN VALUES
diff --git a/lib/libc/locale/isupper.3 b/lib/libc/locale/isupper.3
index f8e403f..b92fe7c 100644
--- a/lib/libc/locale/isupper.3
+++ b/lib/libc/locale/isupper.3
@@ -53,7 +53,7 @@ The
.Fn isupper
function tests for any upper-case letter.
The value of the argument must be representable as an
-.Vt unsigned char
+.Vt "unsigned char"
or the value of
.Dv EOF .
.Pp
diff --git a/lib/libc/locale/isxdigit.3 b/lib/libc/locale/isxdigit.3
index 16c64b1..8e3d9b9 100644
--- a/lib/libc/locale/isxdigit.3
+++ b/lib/libc/locale/isxdigit.3
@@ -72,7 +72,7 @@ but may recognize additional characters,
depending on the current locale setting.
.Pp
The value of the argument must be representable as an
-.Vt unsigned char
+.Vt "unsigned char"
or the value of
.Dv EOF .
.Sh RETURN VALUES
diff --git a/lib/libc/locale/tolower.3 b/lib/libc/locale/tolower.3
index 08d25cc..4934284 100644
--- a/lib/libc/locale/tolower.3
+++ b/lib/libc/locale/tolower.3
@@ -54,7 +54,7 @@ The
function converts an upper-case letter to the corresponding lower-case
letter.
The argument must be representable as an
-.Vt unsigned char
+.Vt "unsigned char"
or the value of
.Dv EOF .
.Sh RETURN VALUES
diff --git a/lib/libc/locale/toupper.3 b/lib/libc/locale/toupper.3
index 381f080..b3ce8ff 100644
--- a/lib/libc/locale/toupper.3
+++ b/lib/libc/locale/toupper.3
@@ -54,7 +54,7 @@ The
function converts a lower-case letter to the corresponding
upper-case letter.
The argument must be representable as an
-.Vt unsigned char
+.Vt "unsigned char"
or the value of
.Dv EOF .
.Sh RETURN VALUES
OpenPOWER on IntegriCloud