Added scanf familiy of functions
git-svn-id: svn://svn.cc65.org/cc65/trunk@1200 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
d036b8946f
commit
fe1f354fe8
1 changed files with 9 additions and 1 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Reference in a new issue