예제 #1
0
파일: a-lib.c 프로젝트: kjanz1899/ren-c
//
//  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);
}
예제 #2
0
파일: a-lib.c 프로젝트: asampal/ren-c
*/	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);
}