/* * Copyright 2006 Michael Maurer , * Brian Goetz , * Loic Dachary , * Tim Showalter * * This package is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 dated June, 1991. * * This package is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this package; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, * MA 02110-1301, USA. */ extern void MakeTable_begin(const char *tableName, const char *fileName, const char *tableType, int tableSize); extern void MakeTable_comment(const char *commentString); extern void MakeTable_extraCode(const char *codeString); extern void MakeTable_outputString(const char *string); #ifdef USE_INT64 extern void MakeTable_outputUInt64(uint64 arg); #endif extern void MakeTable_outputUInt32(uint32 arg); extern void MakeTable_outputUInt16(uint16 arg); extern void MakeTable_outputUInt8(uint8 arg); extern void MakeTable_end(void); extern uint32 n_bits_func(uint32 arg); extern uint32 top_card_func(uint32 arg); extern uint32 bottom_card_func(uint32 arg); extern uint32 bottom_bit_func(uint32 arg); extern uint32 top_bit_func(uint32 arg); extern uint32 straight_func(uint32 arg);