Handbook
Glossary
encode-data-base64-raw ( data dataLength outputLength -- char* )
Raylib memory ownership
Prev:
load-utf8-raw ( codepoints length -- char* )
Next:
text-replace-alloc-raw ( text search replacement -- char* )
Vocabulary
raylib
Inputs
data
a
c-ptr
dataLength
an
int
outputLength
a
c-ptr
Outputs
char*
a
c-ptr
Word description
Returns the original native allocation (or f). Release it with
mem-free
. The version without -raw copies the text into a Factor string and releases this allocation automatically.
Definition
USING:
alien.c-types
alien.syntax
;
IN:
raylib
LIBRARY:
raylib
FUNCTION-ALIAS:
encode-data-base64-raw
char*
EncodeDataBase64
( uchar* data,
int
dataLength, int* outputLength )