/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* */ /* File....: gmpmisc.c */ /* Name....: miscellenious rational arithmetic functions */ /* Author..: Thorsten Koch */ /* Copyright by Author, All rights reserved */ /* */ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* * Copyright (C) 2003-2022 by Thorsten Koch * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 3 * of the License, or (at your option) any later version. * * This program 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef _GMPMISC_H_ #define _GMPMISC_H_ #ifndef __GMP_H__ #error "Need to include gmp.h before gmpmisc.h" #endif #ifdef __cplusplus extern "C" { #endif extern mpq_t const_zero; extern mpq_t const_one; extern mpq_t const_minus_one; //lint -sem(gmp_str2mpq, inout(1), 1p, 2p) extern void gmp_str2mpq(mpq_t value, char const* num); //lint -sem(gmp_print, inout(1), 1p == 1, 2p) extern void gmp_print_mpq(FILE* fp, const mpq_t qval); extern void gmp_init(bool verb, bool with_management); extern void gmp_exit(void); #ifdef __cplusplus } #endif #endif // _GMPMISC_H