diff options
Diffstat (limited to '')
52 files changed, 157 insertions, 157 deletions
diff --git a/src/lib/libc/string/bcmp.3 b/src/lib/libc/string/bcmp.3 index 1660b4356b..52584b4b83 100644 --- a/src/lib/libc/string/bcmp.3 +++ b/src/lib/libc/string/bcmp.3  | |||
| @@ -27,9 +27,9 @@ | |||
| 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: bcmp.3,v 1.9 2011/07/25 00:38:52 schwarze Exp $ | 30 | .\" $OpenBSD: bcmp.3,v 1.10 2013/06/05 03:39:23 tedu Exp $ | 
| 31 | .\" | 31 | .\" | 
| 32 | .Dd $Mdocdate: July 25 2011 $ | 32 | .Dd $Mdocdate: June 5 2013 $ | 
| 33 | .Dt BCMP 3 | 33 | .Dt BCMP 3 | 
| 34 | .Os | 34 | .Os | 
| 35 | .Sh NAME | 35 | .Sh NAME | 
| @@ -37,7 +37,7 @@ | |||
| 37 | .Nm timingsafe_bcmp | 37 | .Nm timingsafe_bcmp | 
| 38 | .Nd compare byte string | 38 | .Nd compare byte string | 
| 39 | .Sh SYNOPSIS | 39 | .Sh SYNOPSIS | 
| 40 | .Fd #include <string.h> | 40 | .In string.h | 
| 41 | .Ft int | 41 | .Ft int | 
| 42 | .Fn bcmp "const void *b1" "const void *b2" "size_t len" | 42 | .Fn bcmp "const void *b1" "const void *b2" "size_t len" | 
| 43 | .Ft int | 43 | .Ft int | 
diff --git a/src/lib/libc/string/bcopy.3 b/src/lib/libc/string/bcopy.3 index 3beaf09aca..94a8231fcb 100644 --- a/src/lib/libc/string/bcopy.3 +++ b/src/lib/libc/string/bcopy.3  | |||
| @@ -28,16 +28,16 @@ | |||
| 28 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 28 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 29 | .\" SUCH DAMAGE. | 29 | .\" SUCH DAMAGE. | 
| 30 | .\" | 30 | .\" | 
| 31 | .\" $OpenBSD: bcopy.3,v 1.10 2011/07/25 00:38:52 schwarze Exp $ | 31 | .\" $OpenBSD: bcopy.3,v 1.11 2013/06/05 03:39:23 tedu Exp $ | 
| 32 | .\" | 32 | .\" | 
| 33 | .Dd $Mdocdate: July 25 2011 $ | 33 | .Dd $Mdocdate: June 5 2013 $ | 
| 34 | .Dt BCOPY 3 | 34 | .Dt BCOPY 3 | 
| 35 | .Os | 35 | .Os | 
| 36 | .Sh NAME | 36 | .Sh NAME | 
| 37 | .Nm bcopy | 37 | .Nm bcopy | 
| 38 | .Nd copy bytes | 38 | .Nd copy bytes | 
| 39 | .Sh SYNOPSIS | 39 | .Sh SYNOPSIS | 
| 40 | .Fd #include <string.h> | 40 | .In string.h | 
| 41 | .Ft void | 41 | .Ft void | 
| 42 | .Fn bcopy "const void *src" "void *dst" "size_t len" | 42 | .Fn bcopy "const void *src" "void *dst" "size_t len" | 
| 43 | .Sh DESCRIPTION | 43 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/bm.3 b/src/lib/libc/string/bm.3 index 6c74848ecc..d492806196 100644 --- a/src/lib/libc/string/bm.3 +++ b/src/lib/libc/string/bm.3  | |||
| @@ -28,9 +28,9 @@ | |||
| 28 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 28 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 29 | .\" SUCH DAMAGE. | 29 | .\" SUCH DAMAGE. | 
| 30 | .\" | 30 | .\" | 
| 31 | .\" $OpenBSD: bm.3,v 1.10 2011/07/25 00:38:52 schwarze Exp $ | 31 | .\" $OpenBSD: bm.3,v 1.11 2013/06/05 03:39:23 tedu Exp $ | 
| 32 | .\" | 32 | .\" | 
| 33 | .Dd $Mdocdate: July 25 2011 $ | 33 | .Dd $Mdocdate: June 5 2013 $ | 
| 34 | .Dt BM 3 | 34 | .Dt BM 3 | 
| 35 | .Os | 35 | .Os | 
| 36 | .Sh NAME | 36 | .Sh NAME | 
| @@ -39,8 +39,8 @@ | |||
| 39 | .Nm bm_free | 39 | .Nm bm_free | 
| 40 | .Nd Boyer-Moore string search | 40 | .Nd Boyer-Moore string search | 
| 41 | .Sh SYNOPSIS | 41 | .Sh SYNOPSIS | 
| 42 | .Fd #include <sys/types.h> | 42 | .In sys/types.h | 
| 43 | .Fd #include <bm.h> | 43 | .In bm.h | 
| 44 | .Ft bm_pat * | 44 | .Ft bm_pat * | 
| 45 | .Fn bm_comp "const unsigned char *pattern" "size_t patlen" \ | 45 | .Fn bm_comp "const unsigned char *pattern" "size_t patlen" \ | 
| 46 | "const unsigned char freq[256]" | 46 | "const unsigned char freq[256]" | 
diff --git a/src/lib/libc/string/bstring.3 b/src/lib/libc/string/bstring.3 index c44c5386c6..d88b78f504 100644 --- a/src/lib/libc/string/bstring.3 +++ b/src/lib/libc/string/bstring.3  | |||
| @@ -27,16 +27,16 @@ | |||
| 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: bstring.3,v 1.9 2011/07/25 00:38:52 schwarze Exp $ | 30 | .\" $OpenBSD: bstring.3,v 1.10 2013/06/05 03:39:23 tedu Exp $ | 
| 31 | .\" | 31 | .\" | 
| 32 | .Dd $Mdocdate: July 25 2011 $ | 32 | .Dd $Mdocdate: June 5 2013 $ | 
| 33 | .Dt BSTRING 3 | 33 | .Dt BSTRING 3 | 
| 34 | .Os | 34 | .Os | 
| 35 | .Sh NAME | 35 | .Sh NAME | 
| 36 | .Nm bstring | 36 | .Nm bstring | 
| 37 | .Nd byte string operations | 37 | .Nd byte string operations | 
| 38 | .Sh SYNOPSIS | 38 | .Sh SYNOPSIS | 
| 39 | .Fd #include <string.h> | 39 | .In string.h | 
| 40 | .Ft int | 40 | .Ft int | 
| 41 | .Fn bcmp "const void *b1" "const void *b2" "size_t len" | 41 | .Fn bcmp "const void *b1" "const void *b2" "size_t len" | 
| 42 | .Ft void | 42 | .Ft void | 
diff --git a/src/lib/libc/string/bzero.3 b/src/lib/libc/string/bzero.3 index c79470377f..1fd5da81b5 100644 --- a/src/lib/libc/string/bzero.3 +++ b/src/lib/libc/string/bzero.3  | |||
| @@ -27,16 +27,16 @@ | |||
| 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: bzero.3,v 1.8 2011/07/25 00:38:52 schwarze Exp $ | 30 | .\" $OpenBSD: bzero.3,v 1.9 2013/06/05 03:39:23 tedu Exp $ | 
| 31 | .\" | 31 | .\" | 
| 32 | .Dd $Mdocdate: July 25 2011 $ | 32 | .Dd $Mdocdate: June 5 2013 $ | 
| 33 | .Dt BZERO 3 | 33 | .Dt BZERO 3 | 
| 34 | .Os | 34 | .Os | 
| 35 | .Sh NAME | 35 | .Sh NAME | 
| 36 | .Nm bzero | 36 | .Nm bzero | 
| 37 | .Nd write zeroes to a byte string | 37 | .Nd write zeroes to a byte string | 
| 38 | .Sh SYNOPSIS | 38 | .Sh SYNOPSIS | 
| 39 | .Fd #include <string.h> | 39 | .In string.h | 
| 40 | .Ft void | 40 | .Ft void | 
| 41 | .Fn bzero "void *b" "size_t len" | 41 | .Fn bzero "void *b" "size_t len" | 
| 42 | .Sh DESCRIPTION | 42 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/ffs.3 b/src/lib/libc/string/ffs.3 index eea0994cb1..c0ed7baa9e 100644 --- a/src/lib/libc/string/ffs.3 +++ b/src/lib/libc/string/ffs.3  | |||
| @@ -27,16 +27,16 @@ | |||
| 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: ffs.3,v 1.8 2012/01/14 13:31:32 jmc Exp $ | 30 | .\" $OpenBSD: ffs.3,v 1.9 2013/06/05 03:39:23 tedu Exp $ | 
| 31 | .\" | 31 | .\" | 
| 32 | .Dd $Mdocdate: January 14 2012 $ | 32 | .Dd $Mdocdate: June 5 2013 $ | 
| 33 | .Dt FFS 3 | 33 | .Dt FFS 3 | 
| 34 | .Os | 34 | .Os | 
| 35 | .Sh NAME | 35 | .Sh NAME | 
| 36 | .Nm ffs | 36 | .Nm ffs | 
| 37 | .Nd find first bit set in a bit string | 37 | .Nd find first bit set in a bit string | 
| 38 | .Sh SYNOPSIS | 38 | .Sh SYNOPSIS | 
| 39 | .Fd #include <string.h> | 39 | .In string.h | 
| 40 | .Ft int | 40 | .Ft int | 
| 41 | .Fn ffs "int value" | 41 | .Fn ffs "int value" | 
| 42 | .Sh DESCRIPTION | 42 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/memccpy.3 b/src/lib/libc/string/memccpy.3 index f8f880e3b1..076e8f64ab 100644 --- a/src/lib/libc/string/memccpy.3 +++ b/src/lib/libc/string/memccpy.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: memccpy.3,v 1.10 2011/07/25 00:38:52 schwarze Exp $ | 1 | .\" $OpenBSD: memccpy.3,v 1.11 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991, 1993 | 3 | .\" Copyright (c) 1990, 1991, 1993 | 
| 4 | .\" The Regents of the University of California. All rights reserved. | 4 | .\" The Regents of the University of California. All rights reserved. | 
| @@ -29,14 +29,14 @@ | |||
| 29 | .\" | 29 | .\" | 
| 30 | .\" @(#)memccpy.3 8.1 (Berkeley) 6/9/93 | 30 | .\" @(#)memccpy.3 8.1 (Berkeley) 6/9/93 | 
| 31 | .\" | 31 | .\" | 
| 32 | .Dd $Mdocdate: July 25 2011 $ | 32 | .Dd $Mdocdate: June 5 2013 $ | 
| 33 | .Dt MEMCCPY 3 | 33 | .Dt MEMCCPY 3 | 
| 34 | .Os | 34 | .Os | 
| 35 | .Sh NAME | 35 | .Sh NAME | 
| 36 | .Nm memccpy | 36 | .Nm memccpy | 
| 37 | .Nd copy string until character found | 37 | .Nd copy string until character found | 
| 38 | .Sh SYNOPSIS | 38 | .Sh SYNOPSIS | 
| 39 | .Fd #include <string.h> | 39 | .In string.h | 
| 40 | .Ft void * | 40 | .Ft void * | 
| 41 | .Fn memccpy "void *dst" "const void *src" "int c" "size_t len" | 41 | .Fn memccpy "void *dst" "const void *src" "int c" "size_t len" | 
| 42 | .Sh DESCRIPTION | 42 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/memchr.3 b/src/lib/libc/string/memchr.3 index 56a4e4780e..1373e14735 100644 --- a/src/lib/libc/string/memchr.3 +++ b/src/lib/libc/string/memchr.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: memchr.3,v 1.10 2011/07/25 00:38:52 schwarze Exp $ | 1 | .\" $OpenBSD: memchr.3,v 1.11 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt MEMCHR 3 | 35 | .Dt MEMCHR 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm memchr | 38 | .Nm memchr | 
| 39 | .Nd locate byte in byte string | 39 | .Nd locate byte in byte string | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <string.h> | 41 | .In string.h | 
| 42 | .Ft void * | 42 | .Ft void * | 
| 43 | .Fn memchr "const void *b" "int c" "size_t len" | 43 | .Fn memchr "const void *b" "int c" "size_t len" | 
| 44 | .Ft void * | 44 | .Ft void * | 
diff --git a/src/lib/libc/string/memcmp.3 b/src/lib/libc/string/memcmp.3 index 951a04ed8a..ebd838825a 100644 --- a/src/lib/libc/string/memcmp.3 +++ b/src/lib/libc/string/memcmp.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: memcmp.3,v 1.7 2011/07/25 00:38:52 schwarze Exp $ | 1 | .\" $OpenBSD: memcmp.3,v 1.8 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt MEMCMP 3 | 35 | .Dt MEMCMP 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm memcmp | 38 | .Nm memcmp | 
| 39 | .Nd compare byte string | 39 | .Nd compare byte string | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <string.h> | 41 | .In string.h | 
| 42 | .Ft int | 42 | .Ft int | 
| 43 | .Fn memcmp "const void *b1" "const void *b2" "size_t len" | 43 | .Fn memcmp "const void *b1" "const void *b2" "size_t len" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/memcpy.3 b/src/lib/libc/string/memcpy.3 index 51c458ee3e..8df2a785b9 100644 --- a/src/lib/libc/string/memcpy.3 +++ b/src/lib/libc/string/memcpy.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: memcpy.3,v 1.9 2013/06/04 03:02:09 deraadt Exp $ | 1 | .\" $OpenBSD: memcpy.3,v 1.10 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: June 4 2013 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt MEMCPY 3 | 35 | .Dt MEMCPY 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm memcpy | 38 | .Nm memcpy | 
| 39 | .Nd copy bytes | 39 | .Nd copy bytes | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <string.h> | 41 | .In string.h | 
| 42 | .Ft void * | 42 | .Ft void * | 
| 43 | .Fn memcpy "void *dst" "const void *src" "size_t len" | 43 | .Fn memcpy "void *dst" "const void *src" "size_t len" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/memmove.3 b/src/lib/libc/string/memmove.3 index ae8569a1c7..8665e4abcf 100644 --- a/src/lib/libc/string/memmove.3 +++ b/src/lib/libc/string/memmove.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: memmove.3,v 1.8 2011/07/25 00:38:52 schwarze Exp $ | 1 | .\" $OpenBSD: memmove.3,v 1.9 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt MEMMOVE 3 | 35 | .Dt MEMMOVE 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm memmove | 38 | .Nm memmove | 
| 39 | .Nd copy bytes | 39 | .Nd copy bytes | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <string.h> | 41 | .In string.h | 
| 42 | .Ft void * | 42 | .Ft void * | 
| 43 | .Fn memmove "void *dst" "const void *src" "size_t len" | 43 | .Fn memmove "void *dst" "const void *src" "size_t len" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/memset.3 b/src/lib/libc/string/memset.3 index db94cb9ba6..ac5b7e90ad 100644 --- a/src/lib/libc/string/memset.3 +++ b/src/lib/libc/string/memset.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: memset.3,v 1.7 2011/07/25 00:38:52 schwarze Exp $ | 1 | .\" $OpenBSD: memset.3,v 1.8 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt MEMSET 3 | 35 | .Dt MEMSET 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm memset | 38 | .Nm memset | 
| 39 | .Nd write a byte to byte string | 39 | .Nd write a byte to byte string | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <string.h> | 41 | .In string.h | 
| 42 | .Ft void * | 42 | .Ft void * | 
| 43 | .Fn memset "void *b" "int c" "size_t len" | 43 | .Fn memset "void *b" "int c" "size_t len" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/stpcpy.3 b/src/lib/libc/string/stpcpy.3 index 447bfc20a9..ed1b830b56 100644 --- a/src/lib/libc/string/stpcpy.3 +++ b/src/lib/libc/string/stpcpy.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: stpcpy.3,v 1.2 2012/01/17 08:12:12 jmc Exp $ | 1 | .\" $OpenBSD: stpcpy.3,v 1.3 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,7 +31,7 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: January 17 2012 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt STPCPY 3 | 35 | .Dt STPCPY 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| @@ -39,7 +39,7 @@ | |||
| 39 | .Nm stpncpy | 39 | .Nm stpncpy | 
| 40 | .Nd copy strings | 40 | .Nd copy strings | 
| 41 | .Sh SYNOPSIS | 41 | .Sh SYNOPSIS | 
| 42 | .Fd #include <string.h> | 42 | .In string.h | 
| 43 | .Ft char * | 43 | .Ft char * | 
| 44 | .Fn stpcpy "char *dst" "const char *src" | 44 | .Fn stpcpy "char *dst" "const char *src" | 
| 45 | .Ft char * | 45 | .Ft char * | 
diff --git a/src/lib/libc/string/strcasecmp.3 b/src/lib/libc/string/strcasecmp.3 index 0900c8a97a..8bd7387dc5 100644 --- a/src/lib/libc/string/strcasecmp.3 +++ b/src/lib/libc/string/strcasecmp.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: strcasecmp.3,v 1.11 2011/07/25 00:38:52 schwarze Exp $ | 1 | .\" $OpenBSD: strcasecmp.3,v 1.12 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991, 1993 | 3 | .\" Copyright (c) 1990, 1991, 1993 | 
| 4 | .\" The Regents of the University of California. All rights reserved. | 4 | .\" The Regents of the University of California. All rights reserved. | 
| @@ -31,7 +31,7 @@ | |||
| 31 | .\" | 31 | .\" | 
| 32 | .\" @(#)strcasecmp.3 8.1 (Berkeley) 6/9/93 | 32 | .\" @(#)strcasecmp.3 8.1 (Berkeley) 6/9/93 | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt STRCASECMP 3 | 35 | .Dt STRCASECMP 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| @@ -39,7 +39,7 @@ | |||
| 39 | .Nm strncasecmp | 39 | .Nm strncasecmp | 
| 40 | .Nd compare strings, ignoring case | 40 | .Nd compare strings, ignoring case | 
| 41 | .Sh SYNOPSIS | 41 | .Sh SYNOPSIS | 
| 42 | .Fd #include <string.h> | 42 | .In string.h | 
| 43 | .Ft int | 43 | .Ft int | 
| 44 | .Fn strcasecmp "const char *s1" "const char *s2" | 44 | .Fn strcasecmp "const char *s1" "const char *s2" | 
| 45 | .Ft int | 45 | .Ft int | 
diff --git a/src/lib/libc/string/strcat.3 b/src/lib/libc/string/strcat.3 index 81aae19a63..79302dba04 100644 --- a/src/lib/libc/string/strcat.3 +++ b/src/lib/libc/string/strcat.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: strcat.3,v 1.13 2011/07/25 00:38:52 schwarze Exp $ | 1 | .\" $OpenBSD: strcat.3,v 1.14 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,7 +31,7 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt STRCAT 3 | 35 | .Dt STRCAT 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| @@ -39,7 +39,7 @@ | |||
| 39 | .Nm strncat | 39 | .Nm strncat | 
| 40 | .Nd concatenate strings | 40 | .Nd concatenate strings | 
| 41 | .Sh SYNOPSIS | 41 | .Sh SYNOPSIS | 
| 42 | .Fd #include <string.h> | 42 | .In string.h | 
| 43 | .Ft char * | 43 | .Ft char * | 
| 44 | .Fn strcat "char *s" "const char *append" | 44 | .Fn strcat "char *s" "const char *append" | 
| 45 | .Ft char * | 45 | .Ft char * | 
diff --git a/src/lib/libc/string/strchr.3 b/src/lib/libc/string/strchr.3 index d3194dffab..eb9ac8e833 100644 --- a/src/lib/libc/string/strchr.3 +++ b/src/lib/libc/string/strchr.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: strchr.3,v 1.10 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: strchr.3,v 1.11 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,7 +31,7 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt STRCHR 3 | 35 | .Dt STRCHR 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| @@ -39,7 +39,7 @@ | |||
| 39 | .Nm index | 39 | .Nm index | 
| 40 | .Nd locate first occurrence of a character in a string | 40 | .Nd locate first occurrence of a character in a string | 
| 41 | .Sh SYNOPSIS | 41 | .Sh SYNOPSIS | 
| 42 | .Fd #include <string.h> | 42 | .In string.h | 
| 43 | .Ft char * | 43 | .Ft char * | 
| 44 | .Fn strchr "const char *s" "int c" | 44 | .Fn strchr "const char *s" "int c" | 
| 45 | .Ft char * | 45 | .Ft char * | 
diff --git a/src/lib/libc/string/strcmp.3 b/src/lib/libc/string/strcmp.3 index 5b0794208a..156021b08c 100644 --- a/src/lib/libc/string/strcmp.3 +++ b/src/lib/libc/string/strcmp.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: strcmp.3,v 1.12 2011/07/25 07:51:30 jmc Exp $ | 1 | .\" $OpenBSD: strcmp.3,v 1.13 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,7 +31,7 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt STRCMP 3 | 35 | .Dt STRCMP 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| @@ -39,7 +39,7 @@ | |||
| 39 | .Nm strncmp | 39 | .Nm strncmp | 
| 40 | .Nd compare strings | 40 | .Nd compare strings | 
| 41 | .Sh SYNOPSIS | 41 | .Sh SYNOPSIS | 
| 42 | .Fd #include <string.h> | 42 | .In string.h | 
| 43 | .Ft int | 43 | .Ft int | 
| 44 | .Fn strcmp "const char *s1" "const char *s2" | 44 | .Fn strcmp "const char *s1" "const char *s2" | 
| 45 | .Ft int | 45 | .Ft int | 
diff --git a/src/lib/libc/string/strcoll.3 b/src/lib/libc/string/strcoll.3 index 72e398c44c..d421200b62 100644 --- a/src/lib/libc/string/strcoll.3 +++ b/src/lib/libc/string/strcoll.3  | |||
| @@ -29,16 +29,16 @@ | |||
| 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: strcoll.3,v 1.8 2011/07/25 00:38:53 schwarze Exp $ | 32 | .\" $OpenBSD: strcoll.3,v 1.9 2013/06/05 03:39:23 tedu Exp $ | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt STRCOLL 3 | 35 | .Dt STRCOLL 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm strcoll | 38 | .Nm strcoll | 
| 39 | .Nd compare strings according to current collation | 39 | .Nd compare strings according to current collation | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <string.h> | 41 | .In string.h | 
| 42 | .Ft int | 42 | .Ft int | 
| 43 | .Fn strcoll "const char *s1" "const char *s2" | 43 | .Fn strcoll "const char *s1" "const char *s2" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/strcpy.3 b/src/lib/libc/string/strcpy.3 index 400eeee622..11f996a4ea 100644 --- a/src/lib/libc/string/strcpy.3 +++ b/src/lib/libc/string/strcpy.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: strcpy.3,v 1.16 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: strcpy.3,v 1.17 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,7 +31,7 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt STRCPY 3 | 35 | .Dt STRCPY 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| @@ -39,7 +39,7 @@ | |||
| 39 | .Nm strncpy | 39 | .Nm strncpy | 
| 40 | .Nd copy strings | 40 | .Nd copy strings | 
| 41 | .Sh SYNOPSIS | 41 | .Sh SYNOPSIS | 
| 42 | .Fd #include <string.h> | 42 | .In string.h | 
| 43 | .Ft char * | 43 | .Ft char * | 
| 44 | .Fn strcpy "char *dst" "const char *src" | 44 | .Fn strcpy "char *dst" "const char *src" | 
| 45 | .Ft char * | 45 | .Ft char * | 
diff --git a/src/lib/libc/string/strcspn.3 b/src/lib/libc/string/strcspn.3 index 70c8ef7612..07eb9ca26f 100644 --- a/src/lib/libc/string/strcspn.3 +++ b/src/lib/libc/string/strcspn.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: strcspn.3,v 1.10 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: strcspn.3,v 1.11 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt STRCSPN 3 | 35 | .Dt STRCSPN 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm strcspn | 38 | .Nm strcspn | 
| 39 | .Nd span the complement of a string | 39 | .Nd span the complement of a string | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <string.h> | 41 | .In string.h | 
| 42 | .Ft size_t | 42 | .Ft size_t | 
| 43 | .Fn strcspn "const char *s" "const char *charset" | 43 | .Fn strcspn "const char *s" "const char *charset" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/strdup.3 b/src/lib/libc/string/strdup.3 index 45a7bd1826..2d7fa0bb96 100644 --- a/src/lib/libc/string/strdup.3 +++ b/src/lib/libc/string/strdup.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: strdup.3,v 1.19 2011/12/08 08:06:19 lum Exp $ | 1 | .\" $OpenBSD: strdup.3,v 1.20 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991, 1993 | 3 | .\" Copyright (c) 1990, 1991, 1993 | 
| 4 | .\" The Regents of the University of California. All rights reserved. | 4 | .\" The Regents of the University of California. All rights reserved. | 
| @@ -29,7 +29,7 @@ | |||
| 29 | .\" | 29 | .\" | 
| 30 | .\" @(#)strdup.3 8.1 (Berkeley) 6/9/93 | 30 | .\" @(#)strdup.3 8.1 (Berkeley) 6/9/93 | 
| 31 | .\" | 31 | .\" | 
| 32 | .Dd $Mdocdate: December 8 2011 $ | 32 | .Dd $Mdocdate: June 5 2013 $ | 
| 33 | .Dt STRDUP 3 | 33 | .Dt STRDUP 3 | 
| 34 | .Os | 34 | .Os | 
| 35 | .Sh NAME | 35 | .Sh NAME | 
| @@ -37,7 +37,7 @@ | |||
| 37 | .Nm strndup | 37 | .Nm strndup | 
| 38 | .Nd save a copy of a string | 38 | .Nd save a copy of a string | 
| 39 | .Sh SYNOPSIS | 39 | .Sh SYNOPSIS | 
| 40 | .Fd #include <string.h> | 40 | .In string.h | 
| 41 | .Ft char * | 41 | .Ft char * | 
| 42 | .Fn strdup "const char *s" | 42 | .Fn strdup "const char *s" | 
| 43 | .Ft char * | 43 | .Ft char * | 
diff --git a/src/lib/libc/string/strerror.3 b/src/lib/libc/string/strerror.3 index bab48af308..5b59235ef6 100644 --- a/src/lib/libc/string/strerror.3 +++ b/src/lib/libc/string/strerror.3  | |||
| @@ -29,16 +29,16 @@ | |||
| 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: strerror.3,v 1.11 2012/03/26 05:07:38 guenther Exp $ | 32 | .\" $OpenBSD: strerror.3,v 1.12 2013/06/05 03:39:23 tedu Exp $ | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: March 26 2012 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt STRERROR 3 | 35 | .Dt STRERROR 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm strerror | 38 | .Nm strerror | 
| 39 | .Nd get error message string | 39 | .Nd get error message string | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <string.h> | 41 | .In string.h | 
| 42 | .Ft char * | 42 | .Ft char * | 
| 43 | .Fn strerror "int errnum" | 43 | .Fn strerror "int errnum" | 
| 44 | .Ft int | 44 | .Ft int | 
diff --git a/src/lib/libc/string/string.3 b/src/lib/libc/string/string.3 index 4d47ad444d..2373d1fb9c 100644 --- a/src/lib/libc/string/string.3 +++ b/src/lib/libc/string/string.3  | |||
| @@ -27,16 +27,16 @@ | |||
| 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.12 2007/05/31 19:19:32 jmc Exp $ | 30 | .\" $OpenBSD: string.3,v 1.13 2013/06/05 03:39:23 tedu Exp $ | 
| 31 | .\" | 31 | .\" | 
| 32 | .Dd $Mdocdate: May 31 2007 $ | 32 | .Dd $Mdocdate: June 5 2013 $ | 
| 33 | .Dt STRING 3 | 33 | .Dt STRING 3 | 
| 34 | .Os | 34 | .Os | 
| 35 | .Sh NAME | 35 | .Sh NAME | 
| 36 | .Nm string | 36 | .Nm string | 
| 37 | .Nd string specific functions | 37 | .Nd string specific functions | 
| 38 | .Sh SYNOPSIS | 38 | .Sh SYNOPSIS | 
| 39 | .Fd #include <string.h> | 39 | .In string.h | 
| 40 | .Ft char * | 40 | .Ft char * | 
| 41 | .Fn strcat "char *s" "const char *append" | 41 | .Fn strcat "char *s" "const char *append" | 
| 42 | .Ft char * | 42 | .Ft char * | 
diff --git a/src/lib/libc/string/strlcpy.3 b/src/lib/libc/string/strlcpy.3 index acce0f7d43..3c0eb2b9a9 100644 --- a/src/lib/libc/string/strlcpy.3 +++ b/src/lib/libc/string/strlcpy.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: strlcpy.3,v 1.22 2012/04/03 14:01:55 jmc Exp $ | 1 | .\" $OpenBSD: strlcpy.3,v 1.23 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1998, 2000 Todd C. Miller <Todd.Miller@courtesan.com> | 3 | .\" Copyright (c) 1998, 2000 Todd C. Miller <Todd.Miller@courtesan.com> | 
| 4 | .\" | 4 | .\" | 
| @@ -14,7 +14,7 @@ | |||
| 14 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 14 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 
| 15 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
| 16 | .\" | 16 | .\" | 
| 17 | .Dd $Mdocdate: April 3 2012 $ | 17 | .Dd $Mdocdate: June 5 2013 $ | 
| 18 | .Dt STRLCPY 3 | 18 | .Dt STRLCPY 3 | 
| 19 | .Os | 19 | .Os | 
| 20 | .Sh NAME | 20 | .Sh NAME | 
| @@ -22,7 +22,7 @@ | |||
| 22 | .Nm strlcat | 22 | .Nm strlcat | 
| 23 | .Nd size-bounded string copying and concatenation | 23 | .Nd size-bounded string copying and concatenation | 
| 24 | .Sh SYNOPSIS | 24 | .Sh SYNOPSIS | 
| 25 | .Fd #include <string.h> | 25 | .In string.h | 
| 26 | .Ft size_t | 26 | .Ft size_t | 
| 27 | .Fn strlcpy "char *dst" "const char *src" "size_t dstsize" | 27 | .Fn strlcpy "char *dst" "const char *src" "size_t dstsize" | 
| 28 | .Ft size_t | 28 | .Ft size_t | 
diff --git a/src/lib/libc/string/strlen.3 b/src/lib/libc/string/strlen.3 index 9187496a00..4d416e200a 100644 --- a/src/lib/libc/string/strlen.3 +++ b/src/lib/libc/string/strlen.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: strlen.3,v 1.10 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: strlen.3,v 1.11 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,7 +31,7 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt STRLEN 3 | 35 | .Dt STRLEN 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| @@ -39,7 +39,7 @@ | |||
| 39 | .Nm strnlen | 39 | .Nm strnlen | 
| 40 | .Nd find length of a string | 40 | .Nd find length of a string | 
| 41 | .Sh SYNOPSIS | 41 | .Sh SYNOPSIS | 
| 42 | .Fd #include <string.h> | 42 | .In string.h | 
| 43 | .Ft size_t | 43 | .Ft size_t | 
| 44 | .Fn strlen "const char *s" | 44 | .Fn strlen "const char *s" | 
| 45 | .Ft size_t | 45 | .Ft size_t | 
diff --git a/src/lib/libc/string/strmode.3 b/src/lib/libc/string/strmode.3 index 5d371b38c8..bebda2ca1c 100644 --- a/src/lib/libc/string/strmode.3 +++ b/src/lib/libc/string/strmode.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: strmode.3,v 1.15 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: strmode.3,v 1.16 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991, 1993 | 3 | .\" Copyright (c) 1990, 1991, 1993 | 
| 4 | .\" The Regents of the University of California. All rights reserved. | 4 | .\" The Regents of the University of California. All rights reserved. | 
| @@ -29,14 +29,14 @@ | |||
| 29 | .\" | 29 | .\" | 
| 30 | .\" @(#)strmode.3 8.3 (Berkeley) 7/28/94 | 30 | .\" @(#)strmode.3 8.3 (Berkeley) 7/28/94 | 
| 31 | .\" | 31 | .\" | 
| 32 | .Dd $Mdocdate: July 25 2011 $ | 32 | .Dd $Mdocdate: June 5 2013 $ | 
| 33 | .Dt STRMODE 3 | 33 | .Dt STRMODE 3 | 
| 34 | .Os | 34 | .Os | 
| 35 | .Sh NAME | 35 | .Sh NAME | 
| 36 | .Nm strmode | 36 | .Nm strmode | 
| 37 | .Nd convert inode status information into a symbolic string | 37 | .Nd convert inode status information into a symbolic string | 
| 38 | .Sh SYNOPSIS | 38 | .Sh SYNOPSIS | 
| 39 | .Fd #include <string.h> | 39 | .In string.h | 
| 40 | .Ft void | 40 | .Ft void | 
| 41 | .Fn strmode "mode_t mode" "char *bp" | 41 | .Fn strmode "mode_t mode" "char *bp" | 
| 42 | .Sh DESCRIPTION | 42 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/strpbrk.3 b/src/lib/libc/string/strpbrk.3 index 9e13c42ad0..b758df6854 100644 --- a/src/lib/libc/string/strpbrk.3 +++ b/src/lib/libc/string/strpbrk.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: strpbrk.3,v 1.9 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: strpbrk.3,v 1.10 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt STRPBRK 3 | 35 | .Dt STRPBRK 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm strpbrk | 38 | .Nm strpbrk | 
| 39 | .Nd locate multiple characters in string | 39 | .Nd locate multiple characters in string | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <string.h> | 41 | .In string.h | 
| 42 | .Ft char * | 42 | .Ft char * | 
| 43 | .Fn strpbrk "const char *s" "const char *charset" | 43 | .Fn strpbrk "const char *s" "const char *charset" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/strrchr.3 b/src/lib/libc/string/strrchr.3 index 9eea08b0a9..046b28ce56 100644 --- a/src/lib/libc/string/strrchr.3 +++ b/src/lib/libc/string/strrchr.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: strrchr.3,v 1.9 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: strrchr.3,v 1.10 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,7 +31,7 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt STRRCHR 3 | 35 | .Dt STRRCHR 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| @@ -39,7 +39,7 @@ | |||
| 39 | .Nm rindex | 39 | .Nm rindex | 
| 40 | .Nd locate last occurrence of a character in a string | 40 | .Nd locate last occurrence of a character in a string | 
| 41 | .Sh SYNOPSIS | 41 | .Sh SYNOPSIS | 
| 42 | .Fd #include <string.h> | 42 | .In string.h | 
| 43 | .Ft char * | 43 | .Ft char * | 
| 44 | .Fn strrchr "const char *s" "int c" | 44 | .Fn strrchr "const char *s" "int c" | 
| 45 | .Ft char * | 45 | .Ft char * | 
diff --git a/src/lib/libc/string/strsep.3 b/src/lib/libc/string/strsep.3 index 63cdf2333a..77053f66d7 100644 --- a/src/lib/libc/string/strsep.3 +++ b/src/lib/libc/string/strsep.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: strsep.3,v 1.13 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: strsep.3,v 1.14 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991, 1993 | 3 | .\" Copyright (c) 1990, 1991, 1993 | 
| 4 | .\" The Regents of the University of California. All rights reserved. | 4 | .\" The Regents of the University of California. All rights reserved. | 
| @@ -32,14 +32,14 @@ | |||
| 32 | .\" | 32 | .\" | 
| 33 | .\" @(#)strsep.3 8.1 (Berkeley) 6/9/93 | 33 | .\" @(#)strsep.3 8.1 (Berkeley) 6/9/93 | 
| 34 | .\" | 34 | .\" | 
| 35 | .Dd $Mdocdate: July 25 2011 $ | 35 | .Dd $Mdocdate: June 5 2013 $ | 
| 36 | .Dt STRSEP 3 | 36 | .Dt STRSEP 3 | 
| 37 | .Os | 37 | .Os | 
| 38 | .Sh NAME | 38 | .Sh NAME | 
| 39 | .Nm strsep | 39 | .Nm strsep | 
| 40 | .Nd separate strings | 40 | .Nd separate strings | 
| 41 | .Sh SYNOPSIS | 41 | .Sh SYNOPSIS | 
| 42 | .Fd #include <string.h> | 42 | .In string.h | 
| 43 | .Ft char * | 43 | .Ft char * | 
| 44 | .Fn strsep "char **stringp" "const char *delim" | 44 | .Fn strsep "char **stringp" "const char *delim" | 
| 45 | .Sh DESCRIPTION | 45 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/strsignal.3 b/src/lib/libc/string/strsignal.3 index 7128d811fd..3261f699d8 100644 --- a/src/lib/libc/string/strsignal.3 +++ b/src/lib/libc/string/strsignal.3  | |||
| @@ -29,16 +29,16 @@ | |||
| 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: strsignal.3,v 1.7 2012/03/26 05:06:35 guenther Exp $ | 32 | .\" $OpenBSD: strsignal.3,v 1.8 2013/06/05 03:39:23 tedu Exp $ | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: March 26 2012 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt STRSIGNAL 3 | 35 | .Dt STRSIGNAL 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm strsignal | 38 | .Nm strsignal | 
| 39 | .Nd get signal description string | 39 | .Nd get signal description string | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <string.h> | 41 | .In string.h | 
| 42 | .Ft char * | 42 | .Ft char * | 
| 43 | .Fn strsignal "int sig" | 43 | .Fn strsignal "int sig" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/strspn.3 b/src/lib/libc/string/strspn.3 index b1a2ae3014..e339d9b6af 100644 --- a/src/lib/libc/string/strspn.3 +++ b/src/lib/libc/string/strspn.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: strspn.3,v 1.10 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: strspn.3,v 1.11 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt STRSPN 3 | 35 | .Dt STRSPN 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm strspn | 38 | .Nm strspn | 
| 39 | .Nd span a string | 39 | .Nd span a string | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <string.h> | 41 | .In string.h | 
| 42 | .Ft size_t | 42 | .Ft size_t | 
| 43 | .Fn strspn "const char *s" "const char *charset" | 43 | .Fn strspn "const char *s" "const char *charset" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/strstr.3 b/src/lib/libc/string/strstr.3 index 4069d55ed2..1f79d45590 100644 --- a/src/lib/libc/string/strstr.3 +++ b/src/lib/libc/string/strstr.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: strstr.3,v 1.11 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: strstr.3,v 1.12 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt STRSTR 3 | 35 | .Dt STRSTR 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm strstr , strcasestr | 38 | .Nm strstr , strcasestr | 
| 39 | .Nd locate a substring in a string | 39 | .Nd locate a substring in a string | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <string.h> | 41 | .In string.h | 
| 42 | .Ft char * | 42 | .Ft char * | 
| 43 | .Fn strstr "const char *big" "const char *little" | 43 | .Fn strstr "const char *big" "const char *little" | 
| 44 | .Ft char * | 44 | .Ft char * | 
diff --git a/src/lib/libc/string/strtok.3 b/src/lib/libc/string/strtok.3 index fbf0abfc26..046a43b6b1 100644 --- a/src/lib/libc/string/strtok.3 +++ b/src/lib/libc/string/strtok.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: strtok.3,v 1.20 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: strtok.3,v 1.21 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1988, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1988, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,7 +31,7 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt STRTOK 3 | 35 | .Dt STRTOK 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| @@ -39,7 +39,7 @@ | |||
| 39 | .Nm strtok_r | 39 | .Nm strtok_r | 
| 40 | .Nd string token operations | 40 | .Nd string token operations | 
| 41 | .Sh SYNOPSIS | 41 | .Sh SYNOPSIS | 
| 42 | .Fd #include <string.h> | 42 | .In string.h | 
| 43 | .Ft char * | 43 | .Ft char * | 
| 44 | .Fn strtok "char *str" "const char *sep" | 44 | .Fn strtok "char *str" "const char *sep" | 
| 45 | .Ft char * | 45 | .Ft char * | 
diff --git a/src/lib/libc/string/strxfrm.3 b/src/lib/libc/string/strxfrm.3 index e4472946be..481f741cb7 100644 --- a/src/lib/libc/string/strxfrm.3 +++ b/src/lib/libc/string/strxfrm.3  | |||
| @@ -29,16 +29,16 @@ | |||
| 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: strxfrm.3,v 1.9 2011/07/25 00:38:53 schwarze Exp $ | 32 | .\" $OpenBSD: strxfrm.3,v 1.10 2013/06/05 03:39:23 tedu Exp $ | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt STRXFRM 3 | 35 | .Dt STRXFRM 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm strxfrm | 38 | .Nm strxfrm | 
| 39 | .Nd transform a string under locale | 39 | .Nd transform a string under locale | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <string.h> | 41 | .In string.h | 
| 42 | .Ft size_t | 42 | .Ft size_t | 
| 43 | .Fn strxfrm "char *dst" "const char *src" "size_t n" | 43 | .Fn strxfrm "char *dst" "const char *src" "size_t n" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/swab.3 b/src/lib/libc/string/swab.3 index 5ebaa485e9..77e5a9ccbc 100644 --- a/src/lib/libc/string/swab.3 +++ b/src/lib/libc/string/swab.3  | |||
| @@ -25,16 +25,16 @@ | |||
| 25 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 25 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 26 | .\" SUCH DAMAGE. | 26 | .\" SUCH DAMAGE. | 
| 27 | .\" | 27 | .\" | 
| 28 | .\" $OpenBSD: swab.3,v 1.7 2011/07/25 00:38:53 schwarze Exp $ | 28 | .\" $OpenBSD: swab.3,v 1.8 2013/06/05 03:39:23 tedu Exp $ | 
| 29 | .\" | 29 | .\" | 
| 30 | .Dd $Mdocdate: July 25 2011 $ | 30 | .Dd $Mdocdate: June 5 2013 $ | 
| 31 | .Dt SWAB 3 | 31 | .Dt SWAB 3 | 
| 32 | .Os | 32 | .Os | 
| 33 | .Sh NAME | 33 | .Sh NAME | 
| 34 | .Nm swab | 34 | .Nm swab | 
| 35 | .Nd swap adjacent bytes | 35 | .Nd swap adjacent bytes | 
| 36 | .Sh SYNOPSIS | 36 | .Sh SYNOPSIS | 
| 37 | .Fd #include <unistd.h> | 37 | .In unistd.h | 
| 38 | .Ft void | 38 | .Ft void | 
| 39 | .Fn swab "const void *src" "void *dst" "size_t len" | 39 | .Fn swab "const void *src" "void *dst" "size_t len" | 
| 40 | .Sh DESCRIPTION | 40 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/wcscasecmp.3 b/src/lib/libc/string/wcscasecmp.3 index 94cd6e0c38..743224a123 100644 --- a/src/lib/libc/string/wcscasecmp.3 +++ b/src/lib/libc/string/wcscasecmp.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: wcscasecmp.3,v 1.2 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: wcscasecmp.3,v 1.3 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991, 1993 | 3 | .\" Copyright (c) 1990, 1991, 1993 | 
| 4 | .\" The Regents of the University of California. All rights reserved. | 4 | .\" The Regents of the University of California. All rights reserved. | 
| @@ -31,7 +31,7 @@ | |||
| 31 | .\" | 31 | .\" | 
| 32 | .\" @(#)strcasecmp.3 8.1 (Berkeley) 6/9/93 | 32 | .\" @(#)strcasecmp.3 8.1 (Berkeley) 6/9/93 | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt WCSCASECMP 3 | 35 | .Dt WCSCASECMP 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| @@ -39,7 +39,7 @@ | |||
| 39 | .Nm wcsncasecmp | 39 | .Nm wcsncasecmp | 
| 40 | .Nd compare wide strings, ignoring case | 40 | .Nd compare wide strings, ignoring case | 
| 41 | .Sh SYNOPSIS | 41 | .Sh SYNOPSIS | 
| 42 | .Fd #include <wchar.h> | 42 | .In wchar.h | 
| 43 | .Ft int | 43 | .Ft int | 
| 44 | .Fn wcscasecmp "const wchar_t *s1" "const wchar_t *s2" | 44 | .Fn wcscasecmp "const wchar_t *s1" "const wchar_t *s2" | 
| 45 | .Ft int | 45 | .Ft int | 
diff --git a/src/lib/libc/string/wcscat.3 b/src/lib/libc/string/wcscat.3 index d0281b8bd1..9b7588cf9e 100644 --- a/src/lib/libc/string/wcscat.3 +++ b/src/lib/libc/string/wcscat.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: wcscat.3,v 1.2 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: wcscat.3,v 1.3 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,7 +31,7 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt WCSCAT 3 | 35 | .Dt WCSCAT 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| @@ -39,7 +39,7 @@ | |||
| 39 | .Nm wcsncat | 39 | .Nm wcsncat | 
| 40 | .Nd concatenate wide strings | 40 | .Nd concatenate wide strings | 
| 41 | .Sh SYNOPSIS | 41 | .Sh SYNOPSIS | 
| 42 | .Fd #include <wchar.h> | 42 | .In wchar.h | 
| 43 | .Ft wchar_t * | 43 | .Ft wchar_t * | 
| 44 | .Fn wcscat "wchar_t * restrict s" "const wchar_t * restrict append" | 44 | .Fn wcscat "wchar_t * restrict s" "const wchar_t * restrict append" | 
| 45 | .Ft wchar_t * | 45 | .Ft wchar_t * | 
diff --git a/src/lib/libc/string/wcschr.3 b/src/lib/libc/string/wcschr.3 index ca2c0ed743..bb714b2099 100644 --- a/src/lib/libc/string/wcschr.3 +++ b/src/lib/libc/string/wcschr.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: wcschr.3,v 1.3 2011/07/25 07:51:30 jmc Exp $ | 1 | .\" $OpenBSD: wcschr.3,v 1.4 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt WCSCHR 3 | 35 | .Dt WCSCHR 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm wcschr | 38 | .Nm wcschr | 
| 39 | .Nd locate first occurrence of a wide character in a wide string | 39 | .Nd locate first occurrence of a wide character in a wide string | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <wchar.h> | 41 | .In wchar.h | 
| 42 | .Ft wchar_t * | 42 | .Ft wchar_t * | 
| 43 | .Fn wcschr "const wchar_t *s" "wchar_t c" | 43 | .Fn wcschr "const wchar_t *s" "wchar_t c" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/wcscmp.3 b/src/lib/libc/string/wcscmp.3 index b34e5c2168..53cd15a1f0 100644 --- a/src/lib/libc/string/wcscmp.3 +++ b/src/lib/libc/string/wcscmp.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: wcscmp.3,v 1.2 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: wcscmp.3,v 1.3 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,7 +31,7 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt WCSCMP 3 | 35 | .Dt WCSCMP 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| @@ -39,7 +39,7 @@ | |||
| 39 | .Nm wcsncmp | 39 | .Nm wcsncmp | 
| 40 | .Nd compare wide strings | 40 | .Nd compare wide strings | 
| 41 | .Sh SYNOPSIS | 41 | .Sh SYNOPSIS | 
| 42 | .Fd #include <wchar.h> | 42 | .In wchar.h | 
| 43 | .Ft int | 43 | .Ft int | 
| 44 | .Fn wcscmp "const wchar_t *s1" "const wchar_t *s2" | 44 | .Fn wcscmp "const wchar_t *s1" "const wchar_t *s2" | 
| 45 | .Ft int | 45 | .Ft int | 
diff --git a/src/lib/libc/string/wcscpy.3 b/src/lib/libc/string/wcscpy.3 index dcc375acbf..c366103565 100644 --- a/src/lib/libc/string/wcscpy.3 +++ b/src/lib/libc/string/wcscpy.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: wcscpy.3,v 1.2 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: wcscpy.3,v 1.3 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,7 +31,7 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt WCSCPY 3 | 35 | .Dt WCSCPY 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| @@ -39,7 +39,7 @@ | |||
| 39 | .Nm wcsncpy | 39 | .Nm wcsncpy | 
| 40 | .Nd copy wide strings | 40 | .Nd copy wide strings | 
| 41 | .Sh SYNOPSIS | 41 | .Sh SYNOPSIS | 
| 42 | .Fd #include <wchar.h> | 42 | .In wchar.h | 
| 43 | .Ft wchar_t * | 43 | .Ft wchar_t * | 
| 44 | .Fn wcscpy "wchar_t * restrict dst" "const wchar_t * restrict src" | 44 | .Fn wcscpy "wchar_t * restrict dst" "const wchar_t * restrict src" | 
| 45 | .Ft wchar_t * | 45 | .Ft wchar_t * | 
diff --git a/src/lib/libc/string/wcscspn.3 b/src/lib/libc/string/wcscspn.3 index c17992501f..520a739202 100644 --- a/src/lib/libc/string/wcscspn.3 +++ b/src/lib/libc/string/wcscspn.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: wcscspn.3,v 1.2 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: wcscspn.3,v 1.3 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt WCSCSPN 3 | 35 | .Dt WCSCSPN 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm wcscspn | 38 | .Nm wcscspn | 
| 39 | .Nd span the complement of a wide string | 39 | .Nd span the complement of a wide string | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <wchar.h> | 41 | .In wchar.h | 
| 42 | .Ft size_t | 42 | .Ft size_t | 
| 43 | .Fn wcscspn "const wchar_t *s" "const wchar_t *charset" | 43 | .Fn wcscspn "const wchar_t *s" "const wchar_t *charset" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/wcslcpy.3 b/src/lib/libc/string/wcslcpy.3 index 98ecf0aabc..4288b98e01 100644 --- a/src/lib/libc/string/wcslcpy.3 +++ b/src/lib/libc/string/wcslcpy.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: wcslcpy.3,v 1.3 2011/07/25 07:51:30 jmc Exp $ | 1 | .\" $OpenBSD: wcslcpy.3,v 1.4 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1998, 2000 Todd C. Miller <Todd.Miller@courtesan.com> | 3 | .\" Copyright (c) 1998, 2000 Todd C. Miller <Todd.Miller@courtesan.com> | 
| 4 | .\" | 4 | .\" | 
| @@ -14,7 +14,7 @@ | |||
| 14 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 14 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 
| 15 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
| 16 | .\" | 16 | .\" | 
| 17 | .Dd $Mdocdate: July 25 2011 $ | 17 | .Dd $Mdocdate: June 5 2013 $ | 
| 18 | .Dt WCSLCPY 3 | 18 | .Dt WCSLCPY 3 | 
| 19 | .Os | 19 | .Os | 
| 20 | .Sh NAME | 20 | .Sh NAME | 
| @@ -22,7 +22,7 @@ | |||
| 22 | .Nm wcslcat | 22 | .Nm wcslcat | 
| 23 | .Nd size-bounded wide string copying and concatenation | 23 | .Nd size-bounded wide string copying and concatenation | 
| 24 | .Sh SYNOPSIS | 24 | .Sh SYNOPSIS | 
| 25 | .Fd #include <wchar.h> | 25 | .In wchar.h | 
| 26 | .Ft size_t | 26 | .Ft size_t | 
| 27 | .Fn wcslcpy "wchar_t *dst" "const wchar_t *src" "size_t size" | 27 | .Fn wcslcpy "wchar_t *dst" "const wchar_t *src" "size_t size" | 
| 28 | .Ft size_t | 28 | .Ft size_t | 
diff --git a/src/lib/libc/string/wcslen.3 b/src/lib/libc/string/wcslen.3 index 1b2eceab93..12f81763ba 100644 --- a/src/lib/libc/string/wcslen.3 +++ b/src/lib/libc/string/wcslen.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: wcslen.3,v 1.2 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: wcslen.3,v 1.3 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt WCSLEN 3 | 35 | .Dt WCSLEN 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm wcslen | 38 | .Nm wcslen | 
| 39 | .Nd find length of a wide string | 39 | .Nd find length of a wide string | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <wchar.h> | 41 | .In wchar.h | 
| 42 | .Ft size_t | 42 | .Ft size_t | 
| 43 | .Fn wcslen "const wchar_t *s" | 43 | .Fn wcslen "const wchar_t *s" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/wcspbrk.3 b/src/lib/libc/string/wcspbrk.3 index 6589e83c83..602bfdc3d6 100644 --- a/src/lib/libc/string/wcspbrk.3 +++ b/src/lib/libc/string/wcspbrk.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: wcspbrk.3,v 1.2 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: wcspbrk.3,v 1.3 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt WCSPBRK 3 | 35 | .Dt WCSPBRK 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm wcspbrk | 38 | .Nm wcspbrk | 
| 39 | .Nd locate multiple wide characters in a wide string | 39 | .Nd locate multiple wide characters in a wide string | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <wchar.h> | 41 | .In wchar.h | 
| 42 | .Ft wchar_t * | 42 | .Ft wchar_t * | 
| 43 | .Fn wcspbrk "const wchar_t *s" "const wchar_t *charset" | 43 | .Fn wcspbrk "const wchar_t *s" "const wchar_t *charset" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/wcsrchr.3 b/src/lib/libc/string/wcsrchr.3 index d65caa4292..d4a2e7cf78 100644 --- a/src/lib/libc/string/wcsrchr.3 +++ b/src/lib/libc/string/wcsrchr.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: wcsrchr.3,v 1.2 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: wcsrchr.3,v 1.3 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt WCSRCHR 3 | 35 | .Dt WCSRCHR 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm wcsrchr | 38 | .Nm wcsrchr | 
| 39 | .Nd locate last occurrence of a wide character in a wide string | 39 | .Nd locate last occurrence of a wide character in a wide string | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <wchar.h> | 41 | .In wchar.h | 
| 42 | .Ft wchar_t * | 42 | .Ft wchar_t * | 
| 43 | .Fn wcsrchr "const wchar_t *s" "wchar_t c" | 43 | .Fn wcsrchr "const wchar_t *s" "wchar_t c" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/wcsspn.3 b/src/lib/libc/string/wcsspn.3 index 66505c59d1..3be82344dd 100644 --- a/src/lib/libc/string/wcsspn.3 +++ b/src/lib/libc/string/wcsspn.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: wcsspn.3,v 1.2 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: wcsspn.3,v 1.3 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt WCSSPN 3 | 35 | .Dt WCSSPN 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm wcsspn | 38 | .Nm wcsspn | 
| 39 | .Nd span a wide string | 39 | .Nd span a wide string | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <wchar.h> | 41 | .In wchar.h | 
| 42 | .Ft size_t | 42 | .Ft size_t | 
| 43 | .Fn wcsspn "const wchar_t *s" "const wchar_t *charset" | 43 | .Fn wcsspn "const wchar_t *s" "const wchar_t *charset" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/wcsstr.3 b/src/lib/libc/string/wcsstr.3 index 73f85c3504..203a76ded3 100644 --- a/src/lib/libc/string/wcsstr.3 +++ b/src/lib/libc/string/wcsstr.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: wcsstr.3,v 1.2 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: wcsstr.3,v 1.3 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt WCSSTR 3 | 35 | .Dt WCSSTR 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm wcsstr | 38 | .Nm wcsstr | 
| 39 | .Nd locate a wide substring in a wide string | 39 | .Nd locate a wide substring in a wide string | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <wchar.h> | 41 | .In wchar.h | 
| 42 | .Ft wchar_t * | 42 | .Ft wchar_t * | 
| 43 | .Fn wcsstr "const wchar_t *big" "const wchar_t *little" | 43 | .Fn wcsstr "const wchar_t *big" "const wchar_t *little" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/wmemchr.3 b/src/lib/libc/string/wmemchr.3 index 21df1aaa88..17fbc9dbc5 100644 --- a/src/lib/libc/string/wmemchr.3 +++ b/src/lib/libc/string/wmemchr.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: wmemchr.3,v 1.9 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: wmemchr.3,v 1.10 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt WMEMCHR 3 | 35 | .Dt WMEMCHR 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm wmemchr | 38 | .Nm wmemchr | 
| 39 | .Nd locate wide character in wide string | 39 | .Nd locate wide character in wide string | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <wchar.h> | 41 | .In wchar.h | 
| 42 | .Ft wchar_t * | 42 | .Ft wchar_t * | 
| 43 | .Fn wmemchr "const wchar_t *b" "wchar_t c" "size_t len" | 43 | .Fn wmemchr "const wchar_t *b" "wchar_t c" "size_t len" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/wmemcmp.3 b/src/lib/libc/string/wmemcmp.3 index 6006b4e5c1..bd8ddfd120 100644 --- a/src/lib/libc/string/wmemcmp.3 +++ b/src/lib/libc/string/wmemcmp.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: wmemcmp.3,v 1.2 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: wmemcmp.3,v 1.3 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt WMEMCMP 3 | 35 | .Dt WMEMCMP 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm wmemcmp | 38 | .Nm wmemcmp | 
| 39 | .Nd compare wide strings | 39 | .Nd compare wide strings | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <wchar.h> | 41 | .In wchar.h | 
| 42 | .Ft int | 42 | .Ft int | 
| 43 | .Fn wmemcmp "const wchar_t *s1" "const wchar_t *s2" "size_t len" | 43 | .Fn wmemcmp "const wchar_t *s1" "const wchar_t *s2" "size_t len" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/wmemcpy.3 b/src/lib/libc/string/wmemcpy.3 index 4bbab2909f..2a6d528a1a 100644 --- a/src/lib/libc/string/wmemcpy.3 +++ b/src/lib/libc/string/wmemcpy.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: wmemcpy.3,v 1.4 2013/06/04 03:02:09 deraadt Exp $ | 1 | .\" $OpenBSD: wmemcpy.3,v 1.5 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: June 4 2013 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt WMEMCPY 3 | 35 | .Dt WMEMCPY 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm wmemcpy | 38 | .Nm wmemcpy | 
| 39 | .Nd copy wide characters | 39 | .Nd copy wide characters | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <wchar.h> | 41 | .In wchar.h | 
| 42 | .Ft wchar_t * | 42 | .Ft wchar_t * | 
| 43 | .Fn wmemcpy "wchar_t * restrict dst" "const wchar_t * restrict src" "size_t len" | 43 | .Fn wmemcpy "wchar_t * restrict dst" "const wchar_t * restrict src" "size_t len" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/wmemmove.3 b/src/lib/libc/string/wmemmove.3 index 45daa854ba..46942e7928 100644 --- a/src/lib/libc/string/wmemmove.3 +++ b/src/lib/libc/string/wmemmove.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: wmemmove.3,v 1.2 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: wmemmove.3,v 1.3 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt WMEMMOVE 3 | 35 | .Dt WMEMMOVE 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm wmemmove | 38 | .Nm wmemmove | 
| 39 | .Nd copy wide characters | 39 | .Nd copy wide characters | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <wchar.h> | 41 | .In wchar.h | 
| 42 | .Ft wchar_t * | 42 | .Ft wchar_t * | 
| 43 | .Fn wmemmove "wchar_t *dst" "const wchar_t *src" "size_t len" | 43 | .Fn wmemmove "wchar_t *dst" "const wchar_t *src" "size_t len" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
diff --git a/src/lib/libc/string/wmemset.3 b/src/lib/libc/string/wmemset.3 index 1b840762ec..2655d68bcb 100644 --- a/src/lib/libc/string/wmemset.3 +++ b/src/lib/libc/string/wmemset.3  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: wmemset.3,v 1.3 2011/07/25 00:38:53 schwarze Exp $ | 1 | .\" $OpenBSD: wmemset.3,v 1.4 2013/06/05 03:39:23 tedu Exp $ | 
| 2 | .\" | 2 | .\" | 
| 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 
| 4 | .\" All rights reserved. | 4 | .\" All rights reserved. | 
| @@ -31,14 +31,14 @@ | |||
| 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
| 32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. | 
| 33 | .\" | 33 | .\" | 
| 34 | .Dd $Mdocdate: July 25 2011 $ | 34 | .Dd $Mdocdate: June 5 2013 $ | 
| 35 | .Dt WMEMSET 3 | 35 | .Dt WMEMSET 3 | 
| 36 | .Os | 36 | .Os | 
| 37 | .Sh NAME | 37 | .Sh NAME | 
| 38 | .Nm wmemset | 38 | .Nm wmemset | 
| 39 | .Nd write a wide string | 39 | .Nd write a wide string | 
| 40 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS | 
| 41 | .Fd #include <wchar.h> | 41 | .In wchar.h | 
| 42 | .Ft wchar_t * | 42 | .Ft wchar_t * | 
| 43 | .Fn wmemset "wchar_t *s" "wchar_t c" "size_t len" | 43 | .Fn wmemset "wchar_t *s" "wchar_t c" "size_t len" | 
| 44 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION | 
