NextData = RawDoFmt(FormatString, DataStream, PutChProc, PutChData);
APTR RawDoFmt(STRPTR,APTR,void (*)(),APTR);
Perform "C"-language sprintf()-like formatting of a data stream, outputting the result a character at a time. Where '%' formatting commands are found in the FormatString, they will be replaced with the corresponding element in the DataStream. '%%' must be used in the string if a '%' is desired in the output.
Under V36, RawDoFmt() returns a pointer to the end of the DataStream (The next argument that would have been processed). This allows multiple formatting passes to be made using the same data.
;
; Simple version of the C "sprintf()" function. Assumes 'C'-style
; stack-based function conventions.
;
; WARNING: This is not a drop-in replacement for the sprintf()
; function of the 'C' compiler runtime library function
; No buffer overflow checks are present either.
;
; long eyecount;
; eyecount=2;
; sprintf(string,"%s have %ld eyes.","Fish",eyecount);
;
; would produce "Fish have 2 eyes." in the string buffer.
;
XDEF _sprintf
XREF _AbsExecBase
XREF _LVORawDoFmt
_sprintf: ; ( ostring, format, {values} )
movem.l a2/a3/a6,-(sp)
move.l 4*4(sp),a3 ;Get the output string pointer
move.l 5*4(sp),a0 ;Get the FormatString pointer
lea.l 6*4(sp),a1 ;Get the pointer to the DataStream
lea.l stuffChar(pc),a2
move.l _AbsExecBase,a6
jsr _LVORawDoFmt(a6)
movem.l (sp)+,a2/a3/a6
rts
;------ PutChProc function used by RawDoFmt -----------
stuffChar:
move.b d0,(a3)+ ;Put data to output string
rts
This Amiga ROM function expects integer parameter values in the data stream to be 16 bit words with sizeof(int) == 2. Hence, in terms of C99 (ISO/IEC 9899:1999) RawDoFmt() defaults to treat "%d" like "%hd", "%x" like "%hx", etc. and it treats "%c" like "%hc".
Your compiler likely provides 32 bit integers parameter values with sizeof(int) == 4. This means that you will have to add an 'l' (this is the lower case letter "L", indicating that the size of the integer is equivalent to sizeof(long)) modifier to the format specification. Hence, e.g. "%d" must be replaced by "%ld", "%x" must be replaced by "%lx" and "%c" must be replaced by "%lc". This looks peculiar for single character output, but it is what it is. Note that even if a 16 bit integer or an 8 bit character is used as a parameter, the compiler will still promote it to a 32 bit integer value.
RawDoFmt() cannot be used to build a drop-in replacement for the sprintf() function of your 'C' compiler runtime library function. Special care must be taken to verify that the %c, %d, %x and %u formatting is adapted to the peculiar behaviour of RawDoFmt() by adding 'l' (lower case letter "L") to the format specification.
The "locale.library" (introduced with Workbench 2.1) will install its own replacement sprintf()-like formatting code via
SetFunction(). This replacement has significantly higher stack size requirements than the original exec.library version of RawDoFmt(). You are best advised to only call RawDoFmt(), even indirectly such as through the
dos.library/VPrintf function, if there are more than 1000 bytes of stack space available. The stack size requirements apply to all locale.library versions up to and including V46.8 (AmigaOS 3.1.4), which all default to prepare for positional arguments such as "%2$s", regardless of whether these are used in the format specification string. Starting with locale.library V47.26 (AmigaOS 3.2) will prepare for positional arguments only if the format specification string calls for it. As a general precaution, you should always assume that preparations for positional arguments are being made.
The result of RawDoFmt() is *ONLY* valid in V36 and later releases of EXEC. Pre-V36 versions of EXEC have "random" return values.
The RawDoFmt() function provides only a limited set of format conversion operations, with the available choices covering what the 1978 first edition of "The 'C' Programming Language" would describe. Hence, the sprintf()-like conversion operations support only "%d", "%x", "%u", "%c" and "%s" conversions, as well as the "%ld", "%lx", "%lu" and "%lc" conversion variants. Floating point number conversion is not supported and neither is conversion of integer values into octal format.
The Kickstart 1.0-1.3 version (V30-V34) of RawDoFmt() was limited to the the "%c", "%d", "%s" and "%x" format specifiers.
Documentation on the 'C' language "sprintf()" function in any 'C' language reference book,
locale.library/FormatString()