summaryrefslogtreecommitdiff
path: root/lib/libc/string
diff options
context:
space:
mode:
authorTim Vanderhoek <hoek@FreeBSD.org>1999-12-31 21:27:02 +0000
committerTim Vanderhoek <hoek@FreeBSD.org>1999-12-31 21:27:02 +0000
commit555fff2109b7fddf3351d68a0d1b59a0b1e0bba7 (patch)
tree2bfda48853d8147ac33d7d2b446e1aea64d8612a /lib/libc/string
parent0b225c812881927556cf6e095197fce57f12388a (diff)
Notes
Diffstat (limited to 'lib/libc/string')
-rw-r--r--lib/libc/string/strrchr.32
-rw-r--r--lib/libc/string/strtok.34
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/string/strrchr.3 b/lib/libc/string/strrchr.3
index 99f46d608ceb..c44996acfb9e 100644
--- a/lib/libc/string/strrchr.3
+++ b/lib/libc/string/strrchr.3
@@ -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
diff --git a/lib/libc/string/strtok.3 b/lib/libc/string/strtok.3
index 3a0b77de7f5d..26b3a1dfba7c 100644
--- a/lib/libc/string/strtok.3
+++ b/lib/libc/string/strtok.3
@@ -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