get-text! in snip%
Like
get-text except that the characters are put into the given mutable string,
instead of returned in a newly allocated string.
( -> void
send a-snip get-text! buffer offset num buffer-offet)
buffer : mutable string
offset : exact non-negative integer
num : exact non-negative integer
buffer-offet : exact non-negative integer
The default implementation calls
get-text, except in the case of a string-snip%, in which case
buffer is filled directly. In either case, the buffer
string is filled starting at position buffer-offsetl the
buffer string must be at least
num + buffer-offset characters long.