[project @ 1998-11-26 09:17:22 by sof]
[ghc-hetmet.git] / ghc / runtime / gmp / mtox.c
1 /* mtox -- Convert OPERAND to hexadecimal and return a malloc'ed string
2    with the result of the conversion.
3
4 Copyright (C) 1991 Free Software Foundation, Inc.
5
6 This file is part of the GNU MP Library.
7
8 The GNU MP Library is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 The GNU MP Library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with the GNU MP Library; see the file COPYING.  If not, write to
20 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
21
22 #include "mp.h"
23 #include "gmp.h"
24 #include "gmp-impl.h"
25
26 char *
27 #ifdef __STDC__
28 mtox (const MINT *operand)
29 #else
30 mtox (operand)
31      const MINT *operand;
32 #endif
33 {
34   /* Call MP_GET_STR with a NULL pointer as string argument, so that it
35      allocates space for the result.  */
36   return _mpz_get_str ((char *) 0, 16, operand);
37 }