1
/*****************************************************************************
3
Copyright (c) 1994, 2009, Innobase Oy. All Rights Reserved.
5
This program is free software; you can redistribute it and/or modify it under
6
the terms of the GNU General Public License as published by the Free Software
7
Foundation; version 2 of the License.
9
This program is distributed in the hope that it will be useful, but WITHOUT
10
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13
You should have received a copy of the GNU General Public License along with
14
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15
Place, Suite 330, Boston, MA 02111-1307 USA
17
*****************************************************************************/
19
/*******************************************************************
22
Created 5/11/1994 Heikki Tuuri
23
********************************************************************/
31
/* Zero value for a dulint */
32
UNIV_INTERN const dulint ut_dulint_zero = {0, 0};
34
/* Maximum value for a dulint */
35
UNIV_INTERN const dulint ut_dulint_max = {0xFFFFFFFFUL, 0xFFFFFFFFUL};
37
#ifdef notdefined /* unused code */
40
/****************************************************************
41
Sort function for dulint arrays. */
44
ut_dulint_sort(dulint* arr, dulint* aux_arr, ulint low, ulint high)
45
/*===============================================================*/
47
UT_SORT_FUNCTION_BODY(ut_dulint_sort, arr, aux_arr, low, high,
50
#endif /* notdefined */