mirror of
https://github.com/adtools/clib2.git
synced 2025-12-08 14:59:05 +00:00
- Added strtof(), llabs(), lldiv(), vsscanf() and vscanf() for C99.
- strftime() now supports %C, %n, %r, %R, %t, %T, %u, %V, and %z for C99. git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14930 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id: stdio_scanf.c,v 1.6 2005-04-24 08:46:37 obarthel Exp $
|
||||
* $Id: stdio_scanf.c,v 1.7 2005-05-07 13:21:49 obarthel Exp $
|
||||
*
|
||||
* :ts=4
|
||||
*
|
||||
@ -71,7 +71,7 @@ scanf(const char *format, ...)
|
||||
#endif /* CHECK_FOR_NULL_POINTERS */
|
||||
|
||||
va_start(arg,format);
|
||||
result = vfscanf(stdin,format,arg);
|
||||
result = vscanf(format,arg);
|
||||
va_end(arg);
|
||||
|
||||
out:
|
||||
|
||||
Reference in New Issue
Block a user