1STRXFRM(3) Linux Programmer's Manual STRXFRM(3)
2
3
4
6 strxfrm - string transformation
7
9 #include <string.h>
10
11 size_t strxfrm(char *dest, const char *src, size_t n);
12
14 The strxfrm() function transforms the src string into a form such that
15 the result of strcmp(3) on two strings that have been transformed with
16 strxfrm() is the same as the result of strcoll(3) on the two strings
17 before their transformation. The first n characters of the transformed
18 string are placed in dest. The transformation is based on the pro‐
19 gram's current locale for category LC_COLLATE. (See setlocale(3)).
20
22 The strxfrm() function returns the number of bytes required to store
23 the transformed string in dest excluding the terminating '\0' charac‐
24 ter. If the value returned is n or more, the contents of dest are
25 indeterminate.
26
28 SVr4, 4.3BSD, C89, C99.
29
31 In the "POSIX" or "C" locales strxfrm() is equivalent to copying the
32 string with strncpy(3).
33
35 bcmp(3), memcmp(3), setlocale(3), strcasecmp(3), strcmp(3), strcoll(3)
36
38 This page is part of release 3.22 of the Linux man-pages project. A
39 description of the project, and information about reporting bugs, can
40 be found at http://www.kernel.org/doc/man-pages/.
41
42
43
44GNU 1993-04-12 STRXFRM(3)