Backout the prev. commit. It's a bad idea to make-up terms. I believe

there is no good solution here.

Set-on-the-straight-and-narrow by:	bde
This commit is contained in:
Tim Vanderhoek 1999-12-31 21:27:02 +00:00
parent 0b225c8128
commit 555fff2109
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=55287
2 changed files with 3 additions and 3 deletions

View File

@ -67,7 +67,7 @@ The
.Fn strrchr
function
returns a pointer to the character,
or the NULL
or a null
pointer if
.Fa c
does not occur anywhere in

View File

@ -80,7 +80,7 @@ The first time that
is called,
.Fa str
should be specified; subsequent calls, wishing to obtain further tokens
from the same string, should pass the NULL pointer instead.
from the same string, should pass a null pointer instead.
The separator string,
.Fa sep ,
must be supplied each time, and may change between calls.
@ -105,7 +105,7 @@ return a pointer to the beginning of each subsequent token in the string,
after replacing the token itself with a
.Dv NUL
character.
When no more tokens remain, the NULL pointer is returned.
When no more tokens remain, a null pointer is returned.
.Sh EXAMPLE
The following uses
.Fn strtok_r