*** empty log message ***

This commit is contained in:
2007-01-21 13:21:14 +00:00
parent 3208b3b2ff
commit 47c71e0489
6 changed files with 265 additions and 51 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: printf.c,v 1.2 2007-01-19 03:23:47 bacon Exp $
* $Id: printf.c,v 1.3 2007-01-21 13:21:14 bacon Exp $
*/
#include <stdarg.h>
@ -7,6 +7,19 @@
#include <wchar.h>
#include <stdlib.h>
#include <ctype.h>
#include <wctype.h>
#if defined(ASE_CHAR_IS_MCHAR)
#define ase_tolower(x) tolower(x)
#define ase_isdigit(x) isdigit(x)
#elif defined(ASE_CHAR_IS_WCHAR)
#define ase_tolower(x) towlower(x)
#define ase_isdigit(x) iswdigit(x)
#else
#error define ASE_CHAR_IS_MCHAR or ASE_CHAR_IS_WCHAR
#endif
static ase_char_t* __adjust_format (const ase_char_t* format);
int ase_vprintf (const ase_char_t* fmt, va_list ap);