Provided by: manpages-es-dev_4.18.1-1_all bug

NOMBRE

       a64l, l64a - realizan la conversión entre enteros largos y base-64

BIBLIOTECA

       Biblioteca Estándar C (libc, -lc)

SINOPSIS

       #include <stdlib.h>

       long a64l(const char *str64);
       char *l64a(long value);

   Requisitos de Macros de Prueba de Características para glibc (véase feature_test_macros(7)):

       a64l(), l64a():
           _XOPEN_SOURCE >= 500
               || /* glibc >= 2.19: */ _DEFAULT_SOURCE
               || /* glibc <= 2.19: */ _SVID_SOURCE

DESCRIPCIÓN

       These  functions  provide  a  conversion  between  32-bit  long integers and little-endian
       base-64 ASCII strings (of length zero to six).  If the string used as argument for  a64l()
       has length greater than six, only the first six bytes are used.  If the type long has more
       than 32 bits, then l64a()   uses  only  the  low  order  32  bits  of  value,  and  a64l()
       sign-extends its 32-bit result.

       Los 64 dígitos del sistema base 64 son:

              '.'  representa un 0
              '/'  representa un 1
              0-9  representa  2-11
              A-Z  representa 12-37
              a-z  representa 38-63

       Como ejemplo, 123 = 59*64^0 + 1*64^1 = "v/".

ATRIBUTOS

       Para obtener una explicación de los términos usados en esta sección, véase attributes(7).

       ┌──────────────────────────────────────────────┬────────────────────┬─────────────────────┐
       │InterfazAtributoValor               │
       ├──────────────────────────────────────────────┼────────────────────┼─────────────────────┤
       │l64a()                                        │ Seguridad del hilo │ MT-Unsafe race:l64a │
       ├──────────────────────────────────────────────┼────────────────────┼─────────────────────┤
       │a64l()                                        │ Seguridad del hilo │ Multi-hilo seguro   │
       └──────────────────────────────────────────────┴────────────────────┴─────────────────────┘

ESTÁNDARES

       POSIX.1-2001, POSIX.1-2008.

NOTAS

       El  valor  devuelto  por  l64a()  puede  ser  un  puntero  a  un buffer estático, que será
       sobreescrito posiblemente por llamadas posteriores.

       El comportamiento de l64a() es indefinido cuando value es  negativo.  Si  value  es  cero,
       devuelve una cadena vacía.

       These functions are broken before glibc 2.2.5 (puts most significant digit first).

       This is not the encoding used by uuencode(1).

VÉASE TAMBIÉN

       uuencode(1), strtoul(3)

TRADUCCIÓN

       La  traducción  al  español  de  esta  página del manual fue creada por Miguel Pérez Ibars
       <mpi79470@alu.um.es>

       Esta traducción es documentación libre; lea  la  GNU  General  Public  License  Version  3
       ⟨https://www.gnu.org/licenses/gpl-3.0.html⟩  o posterior con respecto a las condiciones de
       copyright.  No existe NINGUNA RESPONSABILIDAD.

       Si encuentra algún error en la traducción de esta  página  del  manual,  envíe  un  correo
       electrónico a ⟨debian-l10n-spanish@lists.debian.org⟩.