2013-04-17 00:00:59 -04:00
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4:
2013-04-16 23:59:09 -04:00
# ifndef TOKU_KEY_H
# define TOKU_KEY_H
2013-04-16 23:57:48 -04:00
# ident "$Id$"
2013-04-17 00:00:59 -04:00
# ident "Copyright (c) 2007-2012 Tokutek Inc. All rights reserved."
2013-04-16 23:57:48 -04:00
# ident "The technology is licensed by the Massachusetts Institute of Technology, Rutgers State University of New Jersey, and the Research Foundation of State University of New York at Stony Brook under United States of America Serial No. 11 / 760379 and to the patents and / or patent applications resulting from it."
2007-11-29 14:18:54 +00:00
2007-07-24 01:32:03 +00:00
# include "ybt.h"
2013-04-17 00:00:35 -04:00
# include "fttypes.h"
2007-07-13 19:37:47 +00:00
2013-04-16 23:59:09 -04:00
2007-11-20 00:02:51 +00:00
int toku_keycompare ( bytevec key1 , ITEMLEN key1len , bytevec key2 , ITEMLEN key2len ) ;
void toku_test_keycompare ( void ) ;
2007-07-13 19:37:47 +00:00
2013-04-16 23:58:04 -04:00
int toku_builtin_compare_fun ( DB * , const DBT * , const DBT * ) __attribute__ ( ( __visibility__ ( " default " ) ) ) ;
2007-11-29 18:14:40 +00:00
int toku_dont_call_this_compare_fun ( DB * , const DBT * , const DBT * ) ;
2013-04-16 23:59:09 -04:00
# endif