mirror of
				https://github.com/sqlite/sqlite.git
				synced 2025-10-31 18:11:01 +03:00 
			
		
		
		
	Make sure the argument to ctype.h macros is always an unsigned character.
Ticket #839. (CVS 1881) FossilOrigin-Name: b065973898c06a81c69b70b3fa91c79334bd9b9a
This commit is contained in:
		| @@ -11,7 +11,7 @@ | ||||
| ************************************************************************* | ||||
| ** Internal interface definitions for SQLite. | ||||
| ** | ||||
| ** @(#) $Id: sqliteInt.h,v 1.314 2004/08/07 23:54:48 drh Exp $ | ||||
| ** @(#) $Id: sqliteInt.h,v 1.315 2004/08/08 20:22:18 drh Exp $ | ||||
| */ | ||||
| #ifndef _SQLITEINT_H_ | ||||
| #define _SQLITEINT_H_ | ||||
| @@ -700,9 +700,9 @@ struct Index { | ||||
| ** and Token.n when Token.z==0. | ||||
| */ | ||||
| struct Token { | ||||
|   const char *z;      /* Text of the token.  Not NULL-terminated! */ | ||||
|   unsigned dyn  : 1;  /* True for malloced memory, false for static */ | ||||
|   unsigned n    : 31; /* Number of characters in this token */ | ||||
|   const unsigned char *z; /* Text of the token.  Not NULL-terminated! */ | ||||
|   unsigned dyn  : 1;      /* True for malloced memory, false for static */ | ||||
|   unsigned n    : 31;     /* Number of characters in this token */ | ||||
| }; | ||||
|  | ||||
| /* | ||||
|   | ||||
		Reference in New Issue
	
	Block a user