From 31e92ca26e377b18d087e9065f36d90b061fb83c Mon Sep 17 00:00:00 2001 From: wiz Date: Sun, 13 Aug 2006 23:20:52 +0000 Subject: [PATCH] stresep, not strnsep. Remove duplicate "the". Bump date for previous. --- lib/libc/string/strsep.3 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/libc/string/strsep.3 b/lib/libc/string/strsep.3 index c27a972c89e5..9fedbfd161f5 100644 --- a/lib/libc/string/strsep.3 +++ b/lib/libc/string/strsep.3 @@ -29,9 +29,9 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)strsep.3 8.1 (Berkeley) 6/9/93 -.\" $NetBSD: strsep.3,v 1.17 2006/08/12 23:49:54 christos Exp $ +.\" $NetBSD: strsep.3,v 1.18 2006/08/13 23:20:52 wiz Exp $ .\" -.Dd August 11, 2002 +.Dd August 12, 2006 .Dt STRSEP 3 .Os .Sh NAME @@ -83,8 +83,8 @@ is initially returns .Dv NULL . The -.Fn strnsep -function also takes an escape character that allows quoting the the delimiter +.Fn stresep +function also takes an escape character that allows quoting the delimiter character so that it can be part of the source string. .Sh EXAMPLES The following uses @@ -94,7 +94,7 @@ argument vector: .Bd -literal -offset indent char **ap, *argv[10], *inputstring; -for (ap = argv; ap < \*[Am]argv[9] \*[Am]\*[Am] +for (ap = argv; ap \*[Lt] \*[Am]argv[9] \*[Am]\*[Am] (*ap = strsep(\*[Am]inputstring, " \et")) != NULL;) { if (**ap != '\e0') ap++;