diff options
author | cloder <> | 2005-02-25 03:12:44 +0000 |
---|---|---|
committer | cloder <> | 2005-02-25 03:12:44 +0000 |
commit | 67e61f91527f9a7cd6b9a16b0cd90dd56607d505 (patch) | |
tree | d9de936ffc7fa9289c7b7f61b1db414900ba94fa /src/lib/libc/string/strtok.3 | |
parent | 52fef3b7d084fa9e2d0ac9187917b0ede8d9d58d (diff) | |
download | openbsd-67e61f91527f9a7cd6b9a16b0cd90dd56607d505.tar.gz openbsd-67e61f91527f9a7cd6b9a16b0cd90dd56607d505.tar.bz2 openbsd-67e61f91527f9a7cd6b9a16b0cd90dd56607d505.zip |
Be correct in our man pages when talking about NUL termination (that is,
termination with '\0') vs. null termination.
Input from krw@, jaredy@, jmc@. OK deraadt@
Diffstat (limited to 'src/lib/libc/string/strtok.3')
-rw-r--r-- | src/lib/libc/string/strtok.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/string/strtok.3 b/src/lib/libc/string/strtok.3 index 29eea4847e..03a93980ab 100644 --- a/src/lib/libc/string/strtok.3 +++ b/src/lib/libc/string/strtok.3 | |||
@@ -29,7 +29,7 @@ | |||
29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
30 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
31 | .\" | 31 | .\" |
32 | .\" $OpenBSD: strtok.3,v 1.17 2004/01/20 06:06:48 millert Exp $ | 32 | .\" $OpenBSD: strtok.3,v 1.18 2005/02/25 03:12:44 cloder Exp $ |
33 | .\" | 33 | .\" |
34 | .Dd June 29, 1991 | 34 | .Dd June 29, 1991 |
35 | .Dt STRTOK 3 | 35 | .Dt STRTOK 3 |
@@ -52,7 +52,7 @@ This interface is obsoleted by | |||
52 | .Pp | 52 | .Pp |
53 | The | 53 | The |
54 | .Fn strtok | 54 | .Fn strtok |
55 | function is used to isolate sequential tokens in a null-terminated string, | 55 | function is used to isolate sequential tokens in a NUL-terminated string, |
56 | .Fa str . | 56 | .Fa str . |
57 | These tokens are separated in the string by at least one of the | 57 | These tokens are separated in the string by at least one of the |
58 | characters in | 58 | characters in |