1A64L(3P) POSIX Programmer's Manual A64L(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
11
13 a64l, l64a — convert between a 32-bit integer and a radix-64 ASCII
14 string
15
17 #include <stdlib.h>
18
19 long a64l(const char *s);
20 char *l64a(long value);
21
23 These functions maintain numbers stored in radix-64 ASCII characters.
24 This is a notation by which 32-bit integers can be represented by up to
25 six characters; each character represents a digit in radix-64 notation.
26 If the type long contains more than 32 bits, only the low-order 32 bits
27 shall be used for these operations.
28
29 The characters used to represent digits are '.' (dot) for 0, '/' for
30 1, '0' through '9' for [2,11], 'A' through 'Z' for [12,37], and 'a'
31 through 'z' for [38,63].
32
33 The a64l() function shall take a pointer to a radix-64 representation,
34 in which the first digit is the least significant, and return the cor‐
35 responding long value. If the string pointed to by s contains more than
36 six characters, a64l() shall use the first six. If the first six char‐
37 acters of the string contain a null terminator, a64l() shall use only
38 characters preceding the null terminator. The a64l() function shall
39 scan the character string from left to right with the least significant
40 digit on the left, decoding each character as a 6-bit radix-64 number.
41 If the type long contains more than 32 bits, the resulting value is
42 sign-extended. The behavior of a64l() is unspecified if s is a null
43 pointer or the string pointed to by s was not generated by a previous
44 call to l64a().
45
46 The l64a() function shall take a long argument and return a pointer to
47 the corresponding radix-64 representation. The behavior of l64a() is
48 unspecified if value is negative.
49
50 The value returned by l64a() may be a pointer into a static buffer.
51 Subsequent calls to l64a() may overwrite the buffer.
52
53 The l64a() function need not be thread-safe.
54
56 Upon successful completion, a64l() shall return the long value result‐
57 ing from conversion of the input string. If a string pointed to by s is
58 an empty string, a64l() shall return 0L.
59
60 The l64a() function shall return a pointer to the radix-64 representa‐
61 tion. If value is 0L, l64a() shall return a pointer to an empty string.
62
64 No errors are defined.
65
66 The following sections are informative.
67
69 None.
70
72 If the type long contains more than 32 bits, the result of
73 a64l(l64a(x)) is x in the low-order 32 bits.
74
76 This is not the same encoding as used by either encoding variant of the
77 uuencode utility.
78
80 None.
81
83 strtoul()
84
85 The Base Definitions volume of POSIX.1‐2008, <stdlib.h>
86
87 The Shell and Utilities volume of POSIX.1‐2008, uuencode
88
90 Portions of this text are reprinted and reproduced in electronic form
91 from IEEE Std 1003.1, 2013 Edition, Standard for Information Technology
92 -- Portable Operating System Interface (POSIX), The Open Group Base
93 Specifications Issue 7, Copyright (C) 2013 by the Institute of Electri‐
94 cal and Electronics Engineers, Inc and The Open Group. (This is
95 POSIX.1-2008 with the 2013 Technical Corrigendum 1 applied.) In the
96 event of any discrepancy between this version and the original IEEE and
97 The Open Group Standard, the original IEEE and The Open Group Standard
98 is the referee document. The original Standard can be obtained online
99 at http://www.unix.org/online.html .
100
101 Any typographical or formatting errors that appear in this page are
102 most likely to have been introduced during the conversion of the source
103 files to man page format. To report such errors, see https://www.ker‐
104 nel.org/doc/man-pages/reporting_bugs.html .
105
106
107
108IEEE/The Open Group 2013 A64L(3P)