1STRXFRM(3P) POSIX Programmer's Manual STRXFRM(3P)
2
3
4
6 This manual page is part of the POSIX Programmer's Manual. The Linux
7 implementation of this interface may differ (consult the corresponding
8 Linux manual page for details of Linux behavior), or the interface may
9 not be implemented on Linux.
10
12 strxfrm - string transformation
13
15 #include <string.h>
16
17 size_t strxfrm(char *restrict s1, const char *restrict s2, size_t n);
18
19
21 The strxfrm() function shall transform the string pointed to by s2 and
22 place the resulting string into the array pointed to by s1. The trans‐
23 formation is such that if strcmp() is applied to two transformed
24 strings, it shall return a value greater than, equal to, or less than
25 0, corresponding to the result of strcoll() applied to the same two
26 original strings. No more than n bytes are placed into the resulting
27 array pointed to by s1, including the terminating null byte. If n is 0,
28 s1 is permitted to be a null pointer. If copying takes place between
29 objects that overlap, the behavior is undefined.
30
31 The strxfrm() function shall not change the setting of errno if suc‐
32 cessful.
33
34 Since no return value is reserved to indicate an error, an application
35 wishing to check for error situations should set errno to 0, then call
36 strxfrm(), then check errno.
37
39 Upon successful completion, strxfrm() shall return the length of the
40 transformed string (not including the terminating null byte). If the
41 value returned is n or more, the contents of the array pointed to by s1
42 are unspecified.
43
44 On error, strxfrm() may set errno but no return value is reserved to
45 indicate an error.
46
48 The strxfrm() function may fail if:
49
50 EINVAL The string pointed to by the s2 argument contains characters
51 outside the domain of the collating sequence.
52
53
54 The following sections are informative.
55
57 None.
58
60 The transformation function is such that two transformed strings can be
61 ordered by strcmp() as appropriate to collating sequence information in
62 the program's locale (category LC_COLLATE ).
63
64 The fact that when n is 0 s1 is permitted to be a null pointer is use‐
65 ful to determine the size of the s1 array prior to making the transfor‐
66 mation.
67
69 None.
70
72 None.
73
75 strcmp(), strcoll(), the Base Definitions volume of
76 IEEE Std 1003.1-2001, <string.h>
77
79 Portions of this text are reprinted and reproduced in electronic form
80 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
81 -- Portable Operating System Interface (POSIX), The Open Group Base
82 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
83 Electrical and Electronics Engineers, Inc and The Open Group. In the
84 event of any discrepancy between this version and the original IEEE and
85 The Open Group Standard, the original IEEE and The Open Group Standard
86 is the referee document. The original Standard can be obtained online
87 at http://www.opengroup.org/unix/online.html .
88
89
90
91IEEE/The Open Group 2003 STRXFRM(3P)