*** empty log message ***

This commit is contained in:
2007-01-26 16:10:32 +00:00
parent 4912ada5d8
commit f01bfbbf9a
3 changed files with 29 additions and 17 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: main.c,v 1.3 2007-01-26 16:08:54 bacon Exp $
* $Id: main.c,v 1.4 2007-01-26 16:10:32 bacon Exp $
*/
#include <ase/types.h>
@ -10,7 +10,12 @@
#include <wchar.h>
#include <locale.h>
#if defined(ASE_CHAR_IS_WCHAR) && defined(__unix)
#if defined(_WIN32)
#include <tchar.h>
#define ase_main _tmain
#elif defined(ASE_CHAR_IS_WCHAR) && defined(__unix)
#ifdef __cplusplus
extern "C" { int ase_main (...); }

View File

@ -1,5 +1,5 @@
/*
* $Id: printf.c,v 1.3 2007-01-21 13:21:14 bacon Exp $
* $Id: printf.c,v 1.4 2007-01-26 16:08:55 bacon Exp $
*/
#include <stdarg.h>
@ -10,14 +10,24 @@
#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)
#if defined(_WIN32)
#include <tchar.h>
#define ase_printf _tprintf
#define ase_vprintf _vtprintf
#define ase_fprintf _ftprintf
#define ase_vfprintf _vftprintf
#else
#error define ASE_CHAR_IS_MCHAR or ASE_CHAR_IS_WCHAR
#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
#endif
static ase_char_t* __adjust_format (const ase_char_t* format);