- Don't put the digits strings on the stack.

svn path=/trunk/; revision=5961
This commit is contained in:
Hartmut Birr 2003-09-02 18:19:41 +00:00
parent 14dfbc088a
commit ed80957cfc
4 changed files with 12 additions and 12 deletions

View file

@ -1,4 +1,4 @@
/* $Id: sprintf.c,v 1.11 2003/07/11 13:50:23 royce Exp $ /* $Id: sprintf.c,v 1.12 2003/09/02 18:19:41 hbirr Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -62,8 +62,8 @@ number(char * buf, char * end, long long num, int base, int size, int precision,
{ {
char c,sign,tmp[66]; char c,sign,tmp[66];
const char *digits; const char *digits;
const char small_digits[] = "0123456789abcdefghijklmnopqrstuvwxyz"; const char *small_digits = "0123456789abcdefghijklmnopqrstuvwxyz";
const char large_digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; const char *large_digits = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
int i; int i;
digits = (type & LARGE) ? large_digits : small_digits; digits = (type & LARGE) ? large_digits : small_digits;

View file

@ -1,4 +1,4 @@
/* $Id: swprintf.c,v 1.13 2003/07/11 13:50:23 royce Exp $ /* $Id: swprintf.c,v 1.14 2003/09/02 18:19:41 hbirr Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -64,8 +64,8 @@ number(wchar_t * buf, wchar_t * end, long long num, int base, int size, int prec
{ {
wchar_t c, sign, tmp[66]; wchar_t c, sign, tmp[66];
const wchar_t *digits; const wchar_t *digits;
const wchar_t small_digits[] = L"0123456789abcdefghijklmnopqrstuvwxyz"; const wchar_t *small_digits = L"0123456789abcdefghijklmnopqrstuvwxyz";
const wchar_t large_digits[] = L"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; const wchar_t *large_digits = L"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
int i; int i;
digits = (type & LARGE) ? large_digits : small_digits; digits = (type & LARGE) ? large_digits : small_digits;

View file

@ -1,4 +1,4 @@
/* $Id: sprintf.c,v 1.12 2003/07/11 01:23:16 royce Exp $ /* $Id: sprintf.c,v 1.13 2003/09/02 18:19:41 hbirr Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -61,8 +61,8 @@ number(char *buf, char *end, long long num, int base, int size, int precision, i
{ {
char c,sign,tmp[66]; char c,sign,tmp[66];
const char *digits; const char *digits;
const char small_digits[] = "0123456789abcdefghijklmnopqrstuvwxyz"; const char *small_digits = "0123456789abcdefghijklmnopqrstuvwxyz";
const char large_digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; const char *large_digits = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
int i; int i;
digits = (type & LARGE) ? large_digits : small_digits; digits = (type & LARGE) ? large_digits : small_digits;

View file

@ -1,4 +1,4 @@
/* $Id: swprintf.c,v 1.10 2003/07/11 01:23:16 royce Exp $ /* $Id: swprintf.c,v 1.11 2003/09/02 18:19:41 hbirr Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -64,8 +64,8 @@ number(wchar_t * buf, wchar_t * end, long long num, int base, int size, int prec
{ {
wchar_t c,sign, tmp[66]; wchar_t c,sign, tmp[66];
const wchar_t *digits; const wchar_t *digits;
const wchar_t small_digits[] = L"0123456789abcdefghijklmnopqrstuvwxyz"; const wchar_t *small_digits = L"0123456789abcdefghijklmnopqrstuvwxyz";
const wchar_t large_digits[] = L"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; const wchar_t *large_digits = L"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
int i; int i;
digits = (type & LARGE) ? large_digits : small_digits; digits = (type & LARGE) ? large_digits : small_digits;