1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-09-11 08:30:57 +03:00

Working better with Win95.

Continued work on the new db.c backend. (CVS 1714)

FossilOrigin-Name: df0ff304855bd18c7a3517c500e891b6d006be6a
This commit is contained in:
drh
2001-01-31 13:28:08 +00:00
parent d1881e6165
commit 17a6893463
10 changed files with 173 additions and 187 deletions

View File

@@ -46,7 +46,6 @@
** + All functions are fully reentrant.
**
*/
#include <ctype.h>
#include "sqliteInt.h"
/*
@@ -262,7 +261,7 @@ static int vxprintf(
}
c = *++fmt;
}else{
while( isdigit(c) ){
while( c>='0' && c<='9' ){
width = width*10 + c - '0';
c = *++fmt;
}
@@ -282,7 +281,7 @@ static int vxprintf(
#endif
c = *++fmt;
}else{
while( isdigit(c) ){
while( c>='0' && c<='9' ){
precision = precision*10 + c - '0';
c = *++fmt;
}