1
0
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:
Olaf Barthel
2005-05-07 13:21:49 +00:00
parent ec4fd3c2cb
commit e01d58319d
14 changed files with 739 additions and 37 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: stdio.h,v 1.11 2005-04-04 10:10:02 obarthel Exp $
* $Id: stdio.h,v 1.12 2005-05-07 13:21:49 obarthel Exp $
*
* :ts=4
*
@ -424,6 +424,8 @@ extern int __vasprintf(const char *file,int line,char **ret,const char *format,v
/****************************************************************************/
extern int vfscanf(FILE *stream, const char *format, va_list arg);
extern int vsscanf(const char *s, const char *format, va_list arg);
extern int vscanf(const char *format,va_list arg);
/****************************************************************************/