summaryrefslogtreecommitdiff
path: root/src/lib/libc/string/strxfrm.3
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/string/strxfrm.3')
-rw-r--r--src/lib/libc/string/strxfrm.339
1 files changed, 22 insertions, 17 deletions
diff --git a/src/lib/libc/string/strxfrm.3 b/src/lib/libc/string/strxfrm.3
index 84fd945472..73ce135191 100644
--- a/src/lib/libc/string/strxfrm.3
+++ b/src/lib/libc/string/strxfrm.3
@@ -13,11 +13,7 @@
13.\" 2. Redistributions in binary form must reproduce the above copyright 13.\" 2. Redistributions in binary form must reproduce the above copyright
14.\" notice, this list of conditions and the following disclaimer in the 14.\" notice, this list of conditions and the following disclaimer in the
15.\" documentation and/or other materials provided with the distribution. 15.\" documentation and/or other materials provided with the distribution.
16.\" 3. All advertising materials mentioning features or use of this software 16.\" 3. Neither the name of the University nor the names of its contributors
17.\" must display the following acknowledgement:
18.\" This product includes software developed by the University of
19.\" California, Berkeley and its contributors.
20.\" 4. Neither the name of the University nor the names of its contributors
21.\" may be used to endorse or promote products derived from this software 17.\" may be used to endorse or promote products derived from this software
22.\" without specific prior written permission. 18.\" without specific prior written permission.
23.\" 19.\"
@@ -33,10 +29,9 @@
33.\" 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
34.\" SUCH DAMAGE. 30.\" SUCH DAMAGE.
35.\" 31.\"
36.\" from: @(#)strxfrm.3 5.4 (Berkeley) 6/29/91 32.\" $OpenBSD: strxfrm.3,v 1.8 2007/05/31 19:19:32 jmc Exp $
37.\" $Id: strxfrm.3,v 1.1.1.1 1995/10/18 08:42:23 deraadt Exp $
38.\" 33.\"
39.Dd June 29, 1991 34.Dd $Mdocdate: May 31 2007 $
40.Dt STRXFRM 3 35.Dt STRXFRM 3
41.Os 36.Os
42.Sh NAME 37.Sh NAME
@@ -47,23 +42,33 @@
47.Ft size_t 42.Ft size_t
48.Fn strxfrm "char *dst" "const char *src" "size_t n" 43.Fn strxfrm "char *dst" "const char *src" "size_t n"
49.Sh DESCRIPTION 44.Sh DESCRIPTION
50The 45The idea of
51.Fn strxfrm 46.Fn strxfrm
52function 47is to
53does something horrible (see 48.Dq un-localize
54.Tn ANSI 49a string: the function transforms
55standard). 50.Ar src ,
56In this implementation it just copies. 51storing the result in
52.Ar dst ,
53such that
54.Xr strcmp 3
55on transformed strings returns what
56.Xr strcoll 3
57on the original untransformed strings would return.
57.Sh SEE ALSO 58.Sh SEE ALSO
58.Xr bcmp 3 , 59.Xr bcmp 3 ,
59.Xr memcmp 3 , 60.Xr memcmp 3 ,
60.\" .Xr setlocale 3 , 61.Xr setlocale 3 ,
61.Xr strcasecmp 3 , 62.Xr strcasecmp 3 ,
62.Xr strcmp 3 , 63.Xr strcmp 3 ,
63.Xr strcoll 3 64.Xr strcoll 3
64.Sh STANDARDS 65.Sh STANDARDS
65The 66The
66.Fn strxfrm 67.Fn strxfrm
67function 68function conforms to
68conforms to
69.St -ansiC . 69.St -ansiC .
70.Sh BUGS
71Since locales are not fully implemented on
72.Ox ,
73.Fn strxfrm
74just returns a copy of the original string.