1STRXFRM(3)                 Linux Programmer's Manual                STRXFRM(3)
2
3
4

NAME

6       strxfrm - string transformation
7

SYNOPSIS

9       #include <string.h>
10
11       size_t strxfrm(char *dest, const char *src, size_t n);
12

DESCRIPTION

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

RETURN VALUE

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

CONFORMING TO

28       SVr4, 4.3BSD, C89, C99.
29

NOTES

31       In the POSIX or C locales strxfrm() is equivalent to copying the string
32       with strncpy(3).
33

SEE ALSO

35       bcmp(3), memcmp(3), setlocale(3), strcasecmp(3), strcmp(3), strcoll(3),
36       string(3)
37

COLOPHON

39       This  page  is  part of release 3.53 of the Linux man-pages project.  A
40       description of the project, and information about reporting  bugs,  can
41       be found at http://www.kernel.org/doc/man-pages/.
42
43
44
45GNU                               2012-05-10                        STRXFRM(3)
Impressum