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/string.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/string.3')
-rw-r--r-- | src/lib/libc/string/string.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libc/string/string.3 b/src/lib/libc/string/string.3 index 89034ac24c..690cf4dbda 100644 --- a/src/lib/libc/string/string.3 +++ b/src/lib/libc/string/string.3 | |||
@@ -27,7 +27,7 @@ | |||
27 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 27 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
28 | .\" SUCH DAMAGE. | 28 | .\" SUCH DAMAGE. |
29 | .\" | 29 | .\" |
30 | .\" $OpenBSD: string.3,v 1.10 2004/02/09 20:53:12 jmc Exp $ | 30 | .\" $OpenBSD: string.3,v 1.11 2005/02/25 03:12:44 cloder Exp $ |
31 | .\" | 31 | .\" |
32 | .Dd April 19, 1991 | 32 | .Dd April 19, 1991 |
33 | .Dt STRING 3 | 33 | .Dt STRING 3 |
@@ -84,11 +84,11 @@ | |||
84 | .Sh DESCRIPTION | 84 | .Sh DESCRIPTION |
85 | The string functions | 85 | The string functions |
86 | manipulate strings terminated by a | 86 | manipulate strings terminated by a |
87 | null byte. | 87 | NUL byte. |
88 | .Pp | 88 | .Pp |
89 | See the specific manual pages for more information. | 89 | See the specific manual pages for more information. |
90 | For manipulating variable length generic objects as byte | 90 | For manipulating variable length generic objects as byte |
91 | strings (without the null byte check), see | 91 | strings (without the NUL-byte check), see |
92 | .Xr bstring 3 . | 92 | .Xr bstring 3 . |
93 | .Pp | 93 | .Pp |
94 | Except as noted in their specific manual pages, | 94 | Except as noted in their specific manual pages, |