From fe1f354fe89197a6cdd238f553d39f009f99fe08 Mon Sep 17 00:00:00 2001 From: cuz Date: Sun, 17 Mar 2002 17:18:19 +0000 Subject: [PATCH] Added scanf familiy of functions git-svn-id: svn://svn.cc65.org/cc65/trunk@1200 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- include/stdio.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/include/stdio.h b/include/stdio.h index b57f21e9a..14372a562 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -6,7 +6,7 @@ /* */ /* */ /* */ -/* (C) 1998-2000 Ullrich von Bassewitz */ +/* (C) 1998-2002 Ullrich von Bassewitz */ /* Wacholderweg 14 */ /* D-70597 Stuttgart */ /* EMail: uz@musoftware.de */ @@ -105,6 +105,14 @@ int __fastcall__ vfprintf (FILE* f, const char* format, va_list ap); int vprintf (const char* format, va_list ap); int __fastcall__ vsprintf (char* buf, const char* format, va_list ap); +/* Not available or testing: */ +int scanf (const char* format, ...); +int fscanf (FILE* f, const char* format, ...); +int sscanf (const char* s, const char* format, ...); +int vscanf (const char* format, va_list ap); +int vsscanf (const char* s, const char* format, va_list ap); +int vfscanf (FILE* f, const char* format, va_list ap); + #ifndef __STRICT_ANSI__ FILE* fdopen (int fd, const char* mode); /* Unix */ int __fastcall__ fileno (FILE* f); /* Unix */