#, fuzzy msgid "" msgstr "" "Project-Id-Version: man-pages-l10n VERSION\n" "POT-Creation-Date: 2014-07-17 17:58+0900\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. type: TH #: man-pages-posix/man3p/a64l.3p:2 #, no-wrap msgid "A64L" msgstr "" #. type: TH #: man-pages-posix/man3p/a64l.3p:2 #, no-wrap msgid "2013" msgstr "" #. type: TH #: man-pages-posix/man3p/a64l.3p:2 #, no-wrap msgid "IEEE/The Open Group" msgstr "" #. type: TH #: man-pages-posix/man3p/a64l.3p:2 #, no-wrap msgid "POSIX Programmer's Manual" msgstr "" #. type: SH #: man-pages-posix/man3p/a64l.3p:3 #, no-wrap msgid "PROLOG" msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:8 msgid "" "This manual page is part of the POSIX Programmer's Manual. The Linux " "implementation of this interface may differ (consult the corresponding Linux " "manual page for details of Linux behavior), or the interface may not be " "implemented on Linux." msgstr "" #. type: SH #: man-pages-posix/man3p/a64l.3p:9 #, no-wrap msgid "NAME" msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:13 msgid "" "a64l, l64a \\(em convert between a 32-bit integer and a radix-64 ASCII " "string" msgstr "" #. type: SH #: man-pages-posix/man3p/a64l.3p:13 #, no-wrap msgid "SYNOPSIS" msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:17 #, no-wrap msgid "#include Estdlib.hE\n" msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:20 #, no-wrap msgid "long a64l(const char *I);\n" "char *l64a(long I);\n" msgstr "" #. type: SH #: man-pages-posix/man3p/a64l.3p:21 #, no-wrap msgid "DESCRIPTION" msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:29 msgid "" "These functions maintain numbers stored in radix-64 ASCII characters. This " "is a notation by which 32-bit integers can be represented by up to six " "characters; each character represents a digit in radix-64 notation. If the " "type B contains more than 32 bits, only the low-order 32 bits shall be " "used for these operations." msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:47 msgid "" "The characters used to represent digits are B<'.'> (dot) for 0, B<'/'> for " "1, B<'0'> through B<'9'> for [2,11], B<'A'> through B<'Z'> for [12,37], and " "B<'a'> through B<'z'> for [38,63]." msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:75 msgid "" "The I() function shall take a pointer to a radix-64 representation, " "in which the first digit is the least significant, and return the " "corresponding B value. If the string pointed to by I contains more " "than six characters, I() shall use the first six. If the first six " "characters of the string contain a null terminator, I() shall use " "only characters preceding the null terminator. The I() function shall " "scan the character string from left to right with the least significant " "digit on the left, decoding each character as a 6-bit radix-64 number. If " "the type B contains more than 32 bits, the resulting value is sign-" "extended. The behavior of I() is unspecified if I is a null " "pointer or the string pointed to by I was not generated by a previous " "call to I()." msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:86 msgid "" "The I() function shall take a B argument and return a pointer " "to the corresponding radix-64 representation. The behavior of I() is " "unspecified if I is negative." msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:92 msgid "" "The value returned by I() may be a pointer into a static buffer. " "Subsequent calls to I() may overwrite the buffer." msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:96 msgid "The I() function need not be thread-safe." msgstr "" #. type: SH #: man-pages-posix/man3p/a64l.3p:96 #, no-wrap msgid "RETURN VALUE" msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:107 msgid "" "Upon successful completion, I() shall return the B value " "resulting from conversion of the input string. If a string pointed to by " "I is an empty string, I() shall return 0L." msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:115 msgid "" "The I() function shall return a pointer to the radix-64 " "representation. If I is 0L, I() shall return a pointer to an " "empty string." msgstr "" #. type: SH #: man-pages-posix/man3p/a64l.3p:115 #, no-wrap msgid "ERRORS" msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:117 msgid "No errors are defined." msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:119 msgid "I" msgstr "" #. type: SH #: man-pages-posix/man3p/a64l.3p:119 #, no-wrap msgid "EXAMPLES" msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:121 man-pages-posix/man3p/a64l.3p:135 msgid "None." msgstr "" #. type: SH #: man-pages-posix/man3p/a64l.3p:121 #, no-wrap msgid "APPLICATION USAGE" msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:128 msgid "" "If the type B contains more than 32 bits, the result of " "I(I(I)) is I in the low-order 32 bits." msgstr "" #. type: SH #: man-pages-posix/man3p/a64l.3p:128 #, no-wrap msgid "RATIONALE" msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:133 msgid "" "This is not the same encoding as used by either encoding variant of the " "I utility." msgstr "" #. type: SH #: man-pages-posix/man3p/a64l.3p:133 #, no-wrap msgid "FUTURE DIRECTIONS" msgstr "" #. type: SH #: man-pages-posix/man3p/a64l.3p:135 #, no-wrap msgid "SEE ALSO" msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:137 msgid "I\\^(\\|)" msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:140 msgid "The Base Definitions volume of POSIX.1\\(hy2008, Bstdlib.hE>" msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:143 msgid "The Shell and Utilities volume of POSIX.1\\(hy2008, I\\^" msgstr "" #. type: SH #: man-pages-posix/man3p/a64l.3p:143 #, no-wrap msgid "COPYRIGHT" msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:154 msgid "" "Portions of this text are reprinted and reproduced in electronic form from " "IEEE Std 1003.1, 2013 Edition, Standard for Information Technology -- " "Portable Operating System Interface (POSIX), The Open Group Base " "Specifications Issue 7, Copyright (C) 2013 by the Institute of Electrical " "and Electronics Engineers, Inc and The Open Group. (This is POSIX.1-2008 " "with the 2013 Technical Corrigendum 1 applied.) In the event of any " "discrepancy between this version and the original IEEE and The Open Group " "Standard, the original IEEE and The Open Group Standard is the referee " "document. The original Standard can be obtained online at http://www.unix." "org/online.html ." msgstr "" #. type: Plain text #: man-pages-posix/man3p/a64l.3p:159 msgid "" "Any typographical or formatting errors that appear in this page are most " "likely to have been introduced during the conversion of the source files to " "man page format. To report such errors, see https://www.kernel.org/doc/man-" "pages/reporting_bugs.html ." msgstr ""