mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
29 lines
419 B
C
29 lines
419 B
C
/*
|
|
*
|
|
* (c) 2004,2005 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
|
|
extern void console_putstring(const char *s);
|
|
|
|
static char __printf_buffer[2048];
|
|
|
|
int
|
|
printf(const char * format, ...)
|
|
{
|
|
va_list args;
|
|
int len;
|
|
|
|
va_start(args, format);
|
|
len = vsprintf(__printf_buffer, format, args);
|
|
va_end(args);
|
|
|
|
if (len)
|
|
console_putstring(__printf_buffer);
|
|
|
|
return len;
|
|
}
|