1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-03 06:29:36 +00:00

Added vscanf

git-svn-id: svn://svn.cc65.org/cc65/trunk@3303 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-11-26 23:16:57 +00:00
parent fb4613f4ea
commit 7cf5f27ec6
3 changed files with 29 additions and 0 deletions

View File

@ -38,6 +38,7 @@ strxfrm.s
system.s
timezone.s
vfscanf.s
vscanf.s
vsscanf.s

View File

@ -68,6 +68,7 @@ C_OBJS = _afailed.o \
system.o \
timezone.o \
vfscanf.o \
vscanf.o \
vsscanf.o

27
libsrc/common/vscanf.c Normal file
View File

@ -0,0 +1,27 @@
/*
* 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);
}