From 688d6cbb33ef71f63fab8688e85ac2f7aeb7b164 Mon Sep 17 00:00:00 2001 From: jaredy <> Date: Sat, 6 Aug 2005 03:21:36 +0000 Subject: - macro, punctuation, and rewording tweaks - avoid first person. ok jmc --- src/lib/libc/string/wcstok.3 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/lib/libc/string/wcstok.3') diff --git a/src/lib/libc/string/wcstok.3 b/src/lib/libc/string/wcstok.3 index dd3f36cfd5..28291888f5 100644 --- a/src/lib/libc/string/wcstok.3 +++ b/src/lib/libc/string/wcstok.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: wcstok.3,v 1.2 2005/04/13 20:42:48 jmc Exp $ +.\" $OpenBSD: wcstok.3,v 1.3 2005/08/06 03:21:36 jaredy Exp $ .\" .\" $NetBSD: wcstok.3,v 1.3 2003/09/08 17:54:33 wiz Exp $ .\" @@ -68,7 +68,7 @@ The .Fn wcstok function -is used to isolate sequential tokens in a null-terminated wide character +is used to isolate sequential tokens in a NUL-terminated wide character string, .Fa str . These tokens are separated in the string by at least one of the @@ -97,12 +97,12 @@ The .Fn wcstok function returns a pointer to the beginning of each subsequent token in the string, -after replacing the token itself with a null wide character (L'\e0'). +after replacing the token itself with a NUL wide character (L'\e0'). When no more tokens remain, a null pointer is returned. .Sh EXAMPLES The following code fragment splits a wide character string on .Tn ASCII -space, tab and newline characters and writes the tokens to +space, tab, and newline characters and writes the tokens to standard output: .Bd -literal -offset indent const wchar_t *seps = L" \et\en"; -- cgit v1.2.3-55-g6feb