diff options
| author | kleink <kleink@NetBSD.org> | 1998-02-03 18:12:34 +0000 |
|---|---|---|
| committer | kleink <kleink@NetBSD.org> | 1998-02-03 18:12:34 +0000 |
| commit | b09ee57a4493cc71c09884754ffbda000ba696f7 (patch) | |
| tree | 99f4064030316aae4e8650c50b742daae099a676 /lib/libc/string | |
| parent | 819d730e2508fdcfbe6117a55e344de0609529e7 (diff) | |
Update SYNOPSIS: the function prototypes reside in <strings.h>.
Diffstat (limited to 'lib/libc/string')
| -rw-r--r-- | lib/libc/string/bcmp.3 | 4 | ||||
| -rw-r--r-- | lib/libc/string/bcopy.3 | 4 | ||||
| -rw-r--r-- | lib/libc/string/bzero.3 | 4 | ||||
| -rw-r--r-- | lib/libc/string/ffs.3 | 4 | ||||
| -rw-r--r-- | lib/libc/string/index.3 | 4 | ||||
| -rw-r--r-- | lib/libc/string/rindex.3 | 4 | ||||
| -rw-r--r-- | lib/libc/string/strcasecmp.3 | 4 |
7 files changed, 14 insertions, 14 deletions
diff --git a/lib/libc/string/bcmp.3 b/lib/libc/string/bcmp.3 index cea42846215..ce4bc0aec43 100644 --- a/lib/libc/string/bcmp.3 +++ b/lib/libc/string/bcmp.3 @@ -32,7 +32,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)bcmp.3 8.1 (Berkeley) 6/4/93 -.\" $NetBSD: bcmp.3,v 1.5 1998/01/30 23:38:13 perry Exp $ +.\" $NetBSD: bcmp.3,v 1.6 1998/02/03 18:12:34 kleink Exp $ .\" .Dd June 4, 1993 .Dt BCMP 3 @@ -41,7 +41,7 @@ .Nm bcmp .Nd compare byte string .Sh SYNOPSIS -.Fd #include <string.h> +.Fd #include <strings.h> .Ft int .Fn bcmp "const void *b1" "const void *b2" "size_t len" .Sh DESCRIPTION diff --git a/lib/libc/string/bcopy.3 b/lib/libc/string/bcopy.3 index 114b14673e2..37f7ea42785 100644 --- a/lib/libc/string/bcopy.3 +++ b/lib/libc/string/bcopy.3 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)bcopy.3 8.1 (Berkeley) 6/4/93 -.\" $NetBSD: bcopy.3,v 1.4 1998/01/30 23:38:14 perry Exp $ +.\" $NetBSD: bcopy.3,v 1.5 1998/02/03 18:12:35 kleink Exp $ .\" .Dd June 4, 1993 .Dt BCOPY 3 @@ -42,7 +42,7 @@ .Nm bcopy .Nd copy byte string .Sh SYNOPSIS -.Fd #include <string.h> +.Fd #include <strings.h> .Ft void .Fn bcopy "const void *src" "void *dst" "size_t len" .Sh DESCRIPTION diff --git a/lib/libc/string/bzero.3 b/lib/libc/string/bzero.3 index 57a0c8b6034..0d4b4d7d368 100644 --- a/lib/libc/string/bzero.3 +++ b/lib/libc/string/bzero.3 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)bzero.3 8.1 (Berkeley) 6/4/93 -.\" $NetBSD: bzero.3,v 1.5 1998/01/30 23:38:16 perry Exp $ +.\" $NetBSD: bzero.3,v 1.6 1998/02/03 18:12:36 kleink Exp $ .\" .Dd June 4, 1993 .Dt BZERO 3 @@ -42,7 +42,7 @@ .Nm bzero .Nd write zeroes to a byte string .Sh SYNOPSIS -.Fd #include <string.h> +.Fd #include <strings.h> .Ft void .Fn bzero "void *b" "size_t len" .Sh DESCRIPTION diff --git a/lib/libc/string/ffs.3 b/lib/libc/string/ffs.3 index cbc110c623f..cf8743d7b23 100644 --- a/lib/libc/string/ffs.3 +++ b/lib/libc/string/ffs.3 @@ -32,7 +32,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)ffs.3 8.2 (Berkeley) 4/19/94 -.\" $NetBSD: ffs.3,v 1.5 1998/01/30 23:38:16 perry Exp $ +.\" $NetBSD: ffs.3,v 1.6 1998/02/03 18:12:36 kleink Exp $ .\" .Dd April 19, 1994 .Dt FFS 3 @@ -41,7 +41,7 @@ .Nm ffs .Nd find first bit set in a bit string .Sh SYNOPSIS -.Fd #include <string.h> +.Fd #include <strings.h> .Ft int .Fn ffs "int value" .Sh DESCRIPTION diff --git a/lib/libc/string/index.3 b/lib/libc/string/index.3 index 4cb7a2540a2..c34180cda01 100644 --- a/lib/libc/string/index.3 +++ b/lib/libc/string/index.3 @@ -32,7 +32,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)index.3 8.1 (Berkeley) 6/4/93 -.\" $NetBSD: index.3,v 1.5 1998/01/30 23:38:17 perry Exp $ +.\" $NetBSD: index.3,v 1.6 1998/02/03 18:12:37 kleink Exp $ .\" .Dd June 4, 1993 .Dt INDEX 3 @@ -41,7 +41,7 @@ .Nm index .Nd locate character in string .Sh SYNOPSIS -.Fd #include <string.h> +.Fd #include <strings.h> .Ft char * .Fn index "const char *s" "int c" .Sh DESCRIPTION diff --git a/lib/libc/string/rindex.3 b/lib/libc/string/rindex.3 index 3a78278f8cc..0b1478ad1b8 100644 --- a/lib/libc/string/rindex.3 +++ b/lib/libc/string/rindex.3 @@ -32,7 +32,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)rindex.3 8.1 (Berkeley) 6/4/93 -.\" $NetBSD: rindex.3,v 1.4 1998/01/30 23:38:24 perry Exp $ +.\" $NetBSD: rindex.3,v 1.5 1998/02/03 18:12:37 kleink Exp $ .\" .Dd June 4, 1993 .Dt RINDEX 3 @@ -41,7 +41,7 @@ .Nm rindex .Nd locate character in string .Sh SYNOPSIS -.Fd #include <string.h> +.Fd #include <strings.h> .Ft char * .Fn rindex "const char *s" "int c" .Sh DESCRIPTION diff --git a/lib/libc/string/strcasecmp.3 b/lib/libc/string/strcasecmp.3 index e46b7edcd2e..23136f2aedc 100644 --- a/lib/libc/string/strcasecmp.3 +++ b/lib/libc/string/strcasecmp.3 @@ -32,7 +32,7 @@ .\" SUCH DAMAGE. .\" .\" from: @(#)strcasecmp.3 8.1 (Berkeley) 6/9/93 -.\" $NetBSD: strcasecmp.3,v 1.5 1998/01/30 23:38:25 perry Exp $ +.\" $NetBSD: strcasecmp.3,v 1.6 1998/02/03 18:12:38 kleink Exp $ .\" .Dd June 9, 1993 .Dt STRCASECMP 3 @@ -42,7 +42,7 @@ .Nm strncasecmp .Nd compare strings, ignoring case .Sh SYNOPSIS -.Fd #include <string.h> +.Fd #include <strings.h> .Ft int .Fn strcasecmp "const char *s1" "const char *s2" .Ft int |
