diff options
Diffstat (limited to 'src/libs/sqlite2/util.c')
-rw-r--r-- | src/libs/sqlite2/util.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/sqlite2/util.c b/src/libs/sqlite2/util.c index 579bf753..2382b8d1 100644 --- a/src/libs/sqlite2/util.c +++ b/src/libs/sqlite2/util.c @@ -514,7 +514,7 @@ int sqliteStrNICmp(const char *zLeft, const char *zRight, int N){ } /* -** Return TRUE if z is a pure numeric string. Return FALSE if the +** Return true if z is a pure numeric string. Return false if the ** string contains any character which is not part of a number. ** ** Am empty string is considered non-numeric. @@ -608,9 +608,9 @@ double sqliteAtoF(const char *z, const char **pzEnd){ ** The string zNum represents an integer. There might be some other ** information following the integer too, but that part is ignored. ** If the integer that the prefix of zNum represents will fit in a -** 32-bit signed integer, return TRUE. Otherwise return FALSE. +** 32-bit signed integer, return true. Otherwise return false. ** -** This routine returns FALSE for the string -2147483648 even that +** This routine returns false for the string -2147483648 even that ** that number will, in theory fit in a 32-bit integer. But positive ** 2147483648 will not fit in 32 bits. So it seems safer to return ** false. @@ -692,7 +692,7 @@ int sqliteCompare(const char *atext, const char *btext){ ** D Sort as strings in descending order. ** ** For the "+" and "-" sorting, pure numeric strings (strings for which the -** isNum() function above returns TRUE) always compare less than strings +** isNum() function above returns true) always compare less than strings ** that are not pure numerics. Non-numeric strings compare in memcmp() ** order. This is the same sort order as the sqliteCompare() function ** above generates. |