source: git/MP/MP/h/MP_GmpBigInt.h @ 678cfd

spielwiese
Last change on this file since 678cfd was 678cfd, checked in by Olaf Bachmann <obachman@…>, 27 years ago
This commit was generated by cvs2svn to compensate for changes in r337, which included commits to RCS files with non-trunk default branches. git-svn-id: file:///usr/local/Singular/svn/trunk@338 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 944 bytes
Line 
1/****************************************************************
2 *                                                                 
3 *   HEADER FILE:  MP_GmpBigInt.h
4 *
5 *  The bigint routines of gmp
6 *
7 ****************************************************************/
8
9#ifndef _MP_GmpBigInt_h
10#define _MP_GmpBigInt_h
11
12#include "MP.h"
13
14#ifdef MP_HAVE_GMP_APINT
15
16#include "gmp.h"
17
18EXTERN MP_BigIntOps_t imp_gmp_bigint_ops;
19
20EXTERN MP_Status_t IMP_GetGmpInt _ANSI_ARGS_((MP_Link_pt link,
21                                              MP_ApInt_t* mp_apint));
22EXTERN MP_Status_t IMP_PutGmpInt _ANSI_ARGS_((MP_Link_pt link,
23                                              MP_ApInt_t mp_apint));
24EXTERN char *IMP_GmpIntToStr _ANSI_ARGS_((MP_ApInt_t mp_apint,
25                                          char *buffer));
26EXTERN long IMP_GmpIntAsciiSize _ANSI_ARGS_((MP_ApInt_t mp_apint));
27
28#endif /* MP_HAVE_GMP_APINT */ 
29
30#endif /* _MP_GmpBigInt_h */
Note: See TracBrowser for help on using the repository browser.