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 bytes 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 null byte
24 ('\0'). If the value returned is n or more, the contents of dest are
25 indeterminate.
26
28 For an explanation of the terms used in this section, see
29 attributes(7).
30
31 ┌──────────┬───────────────┬────────────────┐
32 │Interface │ Attribute │ Value │
33 ├──────────┼───────────────┼────────────────┤
34 │strxfrm() │ Thread safety │ MT-Safe locale │
35 └──────────┴───────────────┴────────────────┘
37 POSIX.1-2001, POSIX.1-2008, C89, C99, SVr4, 4.3BSD.
38
40 bcmp(3), memcmp(3), setlocale(3), strcasecmp(3), strcmp(3), strcoll(3),
41 string(3)
42
44 This page is part of release 5.04 of the Linux man-pages project. A
45 description of the project, information about reporting bugs, and the
46 latest version of this page, can be found at
47 https://www.kernel.org/doc/man-pages/.
48
49
50
51GNU 2019-03-06 STRXFRM(3)