diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2001-02-01 16:38:02 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2001-02-01 16:38:02 +0000 |
commit | d0353b836e88609b9400851d32e0aa6645ff9be3 (patch) | |
tree | aa7324a24491215cb462cf95382795f1649d10b6 /lib/libc/string | |
parent | 1f56a9494c2616ff6794d652f38eff0f7f95bbb9 (diff) |
mdoc(7) police: split punctuation characters + misc fixes.
Notes
Notes:
svn path=/head/; revision=71895
Diffstat (limited to 'lib/libc/string')
-rw-r--r-- | lib/libc/string/bstring.3 | 2 | ||||
-rw-r--r-- | lib/libc/string/strcat.3 | 2 | ||||
-rw-r--r-- | lib/libc/string/strerror.3 | 2 | ||||
-rw-r--r-- | lib/libc/string/string.3 | 4 | ||||
-rw-r--r-- | lib/libc/string/strtok.3 | 6 |
5 files changed, 9 insertions, 7 deletions
diff --git a/lib/libc/string/bstring.3 b/lib/libc/string/bstring.3 index c79eb94a3172..873c785bca93 100644 --- a/lib/libc/string/bstring.3 +++ b/lib/libc/string/bstring.3 @@ -45,7 +45,7 @@ .Nm memchr , .Nm memcmp , .Nm memcpy , -.Nm memmove, +.Nm memmove , .Nm memset .Nd byte string operations .Sh LIBRARY diff --git a/lib/libc/string/strcat.3 b/lib/libc/string/strcat.3 index 77fd0d275d67..fbb2996bf5cd 100644 --- a/lib/libc/string/strcat.3 +++ b/lib/libc/string/strcat.3 @@ -74,7 +74,7 @@ appends not more than characters from .Fa append , and then adds a terminating -.Ql \e0. +.Ql \e0 . .Sh RETURN VALUES The .Fn strcat diff --git a/lib/libc/string/strerror.3 b/lib/libc/string/strerror.3 index 762f89d35ee6..1799c1c6a8b2 100644 --- a/lib/libc/string/strerror.3 +++ b/lib/libc/string/strerror.3 @@ -95,7 +95,7 @@ If .Fa errnum is not a recognized error number, the error message string will contain -.Dq Li "Unknown error:\0 +.Dq Li "Unknown error:\ " followed by the error number in decimal. .Pp The message strings can be accessed directly using the external diff --git a/lib/libc/string/string.3 b/lib/libc/string/string.3 index 8a83a3732cb8..1131b6dddad0 100644 --- a/lib/libc/string/string.3 +++ b/lib/libc/string/string.3 @@ -44,14 +44,14 @@ .Nm strrchr , .Nm strcmp , .Nm strncmp , -.Nm strcasecmp, +.Nm strcasecmp , .Nm strncasecmp , .Nm strcpy , .Nm strncpy , .Nm strerror , .Nm strlen , .Nm strpbrk , -.Nm strsep, +.Nm strsep , .Nm strspn , .Nm strcspn , .Nm strstr , diff --git a/lib/libc/string/strtok.3 b/lib/libc/string/strtok.3 index 5a3c90770758..ea28f94bcce8 100644 --- a/lib/libc/string/strtok.3 +++ b/lib/libc/string/strtok.3 @@ -54,7 +54,7 @@ .Dt STRTOK 3 .Os FreeBSD .Sh NAME -.Nm strtok, strtok_r +.Nm strtok , strtok_r .Nd string tokens .Sh LIBRARY .Lb libc @@ -165,7 +165,9 @@ Since this implementation always alters the next starting point, such a sequence of calls would always return .Dv NULL . .Sh AUTHORS -.An Wes Peters, Softweyr LLC: Aq wes@softweyr.com +.An Wes Peters , +Softweyr LLC: +.Aq wes@softweyr.com .Pp Based on the .Fx 3.0 |