sprintf(destination, formatstring, var_args);
Performs string formatting identical to printf, but directs the output into a specific destination in memory. This uses the ROM version of printf (
exec.library/RawDoFmt()), so it is very small.
Assembly programmers can call this by placing values on the stack, followed by a pointer to the formatstring, followed by a pointer to the destination string.