1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-10 23:29:05 +00:00
cc65/libsrc/common/vscanf.c

28 lines
435 B
C
Raw Normal View History

/*
* vscanf.c
*
* Ullrich von Bassewitz (uz@cc65.org), 2004-11-26
*
*/
#include <stdio.h>
/*****************************************************************************/
/* Code */
/*****************************************************************************/
int __fastcall__ vscanf (const char* format, va_list ap)
/* Standard C function */
{
return vfscanf (stdin, format, ap);
}