diff options
author | Yoni Fogel <yoni@tokutek.com> | 2012-07-25 20:49:56 +0000 |
---|---|---|
committer | Yoni Fogel <yoni@tokutek.com> | 2013-04-17 00:01:01 -0400 |
commit | c527ba297f51755c3bae22e3d2b48f18d51e60b3 (patch) | |
tree | dc1348249742e83444184654029b4b190e9209b5 /ft/le-cursor.h | |
parent | 36242fd401ce5a2e668ee2763ef47f8b810b0e7e (diff) | |
download | mariadb-git-c527ba297f51755c3bae22e3d2b48f18d51e60b3.tar.gz |
refs #5081 Replace all usage:
BOOL->bool
FALSE->false
TRUE->true
u_int*_t->uint*_t
Also poisoned all of the variables
git-svn-id: file:///svn/toku/tokudb@46157 c7de825b-a66e-492c-adef-691d508d4ae1
Diffstat (limited to 'ft/le-cursor.h')
-rw-r--r-- | ft/le-cursor.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ft/le-cursor.h b/ft/le-cursor.h index 3d8bf3c9fff..6df96eee824 100644 --- a/ft/le-cursor.h +++ b/ft/le-cursor.h @@ -34,11 +34,11 @@ int toku_le_cursor_close(LE_CURSOR le_cursor); // Failure: returns a non-zero error number int toku_le_cursor_next(LE_CURSOR le_cursor, FT_GET_CALLBACK_FUNCTION getf, void *getf_v); -// Return TRUE if the key is to the right of the LE_CURSOR position. that is, current cursor key < given key -// Otherwise returns FALSE when the key is at or to the left of the LE_CURSOR position. that is, current cursor key >= given key -// The LE_CURSOR position is intialized to -infinity. Any key comparision with -infinity returns TRUE. +// Return true if the key is to the right of the LE_CURSOR position. that is, current cursor key < given key +// Otherwise returns false when the key is at or to the left of the LE_CURSOR position. that is, current cursor key >= given key +// The LE_CURSOR position is intialized to -infinity. Any key comparision with -infinity returns true. // When the cursor runs off the right edge of the tree, the LE_CURSOR position is set to +infinity. Any key comparision with +infinity -// returns FALSE. +// returns false. bool toku_le_cursor_is_key_greater(LE_CURSOR le_cursor, const DBT *key); #endif |