mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-17 02:13:54 +00:00
Estimated hours taken: 1 Various bug fixes and other cleanups of the new tabling code. library/mercury_builtin.m: Fix a couple of bugs in the new tabling code that broke in grades other than asm_fast.gc. runtime/mercury_tabling.h: Fix a couple of type errors that caused things to break in grades other than asm_fast.gc. Change the layout to match our coding guidelines. runtime/mercury_table_any.c: Fix the layout to match our coding guidelines. runtime/mercury_table_any.h: runtime/mercury_table_enum.h: runtime/mercury_table_int_float_string.h: runtime/mercury_table_type_info.h: Add copyright notice. runtime/mercury_table.h: Add a comment pointing out that this is hash tables, not tabling.
18 lines
563 B
C
18 lines
563 B
C
/*
|
|
** Copyright (C) 1997-1998 The University of Melbourne.
|
|
** This file may only be copied under the terms of the GNU Library General
|
|
** Public License - see the file COPYING.LIB in the Mercury distribution.
|
|
*/
|
|
|
|
#ifndef MERCURY_TABLE_ENUM_H
|
|
#define MERCURY_TABLE_ENUM_H
|
|
|
|
/*
|
|
** MR_int_index_lookup_or_add() : This function maintains a simple indexed
|
|
** table of size Range. The return value is a pointer to the table
|
|
** node found by the lookup/insert.
|
|
*/
|
|
TrieNode MR_int_index_lookup_or_add(TrieNode, Integer, Integer);
|
|
|
|
#endif /* not MERCURY_TABLE_ENUM_H */
|