[project @ 1998-11-26 09:17:22 by sof]
[ghc-hetmet.git] / ghc / runtime / gmp / mpz_iset_str.c
1 /* mpz_init_set_str(mpz, string, base) -- Initialize MPZ and set it to the
2    value in the \0-terminated ascii string STRING in base BASE.  Return 0 if
3    the string was accepted, -1 if an error occured.  If BASE == 0 determine
4    the base in the C standard way, i.e.  0xhh...h means base 16, 0oo...o
5    means base 8, otherwise assume base 10.
6
7 Copyright (C) 1991 Free Software Foundation, Inc.
8
9 This file is part of the GNU MP Library.
10
11 The GNU MP Library is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2, or (at your option)
14 any later version.
15
16 The GNU MP Library is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with the GNU MP Library; see the file COPYING.  If not, write to
23 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
24
25 #include "gmp.h"
26 #include "gmp-impl.h"
27
28 int
29 #ifdef __STDC__
30 mpz_init_set_str (MP_INT *x, const char *str, int base)
31 #else
32 mpz_init_set_str (x, str, base)
33      MP_INT *x;
34      const char *str;
35      int base;
36 #endif
37 {
38   x->alloc = 1;
39   x->d = (mp_ptr) (*_mp_allocate_func) (BYTES_PER_MP_LIMB * x->alloc);
40
41   return _mpz_set_str (x, str, base);
42 }