// // RL_Print: C // // Low level print of formatted data to the console. // // Returns: // nothing // Arguments: // fmt - A format string similar but not identical to printf. // Special options are available. // ... - Values to be formatted. // Notes: // This function is low level and handles only a few C datatypes // at this time. // RL_API void RL_Print(const REBYTE *fmt, ...) { va_list va; va_start(va, fmt); Debug_Buf(cs_cast(fmt), &va); va_end(va); }
*/ RL_API void RL_Print(const REBYTE *fmt, ...) /* ** Low level print of formatted data to the console. ** ** Returns: ** nothing ** Arguments: ** fmt - A format string similar but not identical to printf. ** Special options are available. ** ... - Values to be formatted. ** Notes: ** This function is low level and handles only a few C datatypes ** at this time. ** ***********************************************************************/ { va_list args; va_start(args, fmt); Debug_Buf(cs_cast(fmt), &args); va_end(args); }