Handbook
Glossary
decode-data-base64 ( data outputLength -- uchar* )
Vocabulary
raylib
Inputs
data
a
c-string
outputLength
a
pointer
to a
int
Outputs
uchar*
a
pointer
to a
uchar
Word description
Decodes a Base64 string to a native binary allocation. outputLength excludes any terminator; copy exactly that many bytes and release the original pointer with mem-free.
Definition
USING:
alien.c-types
alien.syntax
;
IN:
raylib
LIBRARY:
raylib
FUNCTION-ALIAS:
decode-data-base64
uchar*
DecodeDataBase64 (
c-string
data, int* outputLength )