summaryrefslogtreecommitdiff
path: root/set_str.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2003-03-26 10:01:02 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2003-03-26 10:01:02 +0000
commitda7e020cc83099ec84b97885a5f99baeb70e99c7 (patch)
treef91454b4accc821a49c544fe113c6838ca627685 /set_str.c
parent133dd811b96ef442ba4270210f922f6195db17d0 (diff)
downloadmpfr-da7e020cc83099ec84b97885a5f99baeb70e99c7.tar.gz
changed back "unsigned char *" to "char *"
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@2278 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'set_str.c')
-rw-r--r--set_str.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/set_str.c b/set_str.c
index a017a9f7c..6197bee24 100644
--- a/set_str.c
+++ b/set_str.c
@@ -68,7 +68,7 @@ digit_value_in_base (int c, int base)
mpf_set_str)
*/
int
-mpfr_set_str (mpfr_t x, __gmp_const unsigned char *str, int base, mp_rnd_t rnd)
+mpfr_set_str (mpfr_t x, __gmp_const char *str, int base, mp_rnd_t rnd)
{
mp_limb_t *y; /* current value of x */
mp_exp_t exp_y; /* such as x = y*base^exp_y */
@@ -81,9 +81,9 @@ mpfr_set_str (mpfr_t x, __gmp_const unsigned char *str, int base, mp_rnd_t rnd)
mantissa 0.xxx...xxx */
mp_exp_t binexp = 0; /* binary exponent (for base 16) */
mp_exp_t prec_x; /* working precision for x */
- unsigned char *str1; /* copy of str */
+ char *str1; /* copy of str */
size_t size_str1; /* number of characters in str1 */
- unsigned char *mant_s; /* pointer in str1 */
+ char *mant_s; /* pointer in str1 */
int negative; /* 1 if str<=0, 0 otherwise */
size_t i, j;
long err = 0;
@@ -216,7 +216,7 @@ mpfr_set_str (mpfr_t x, __gmp_const unsigned char *str, int base, mp_rnd_t rnd)
pr = prec_s;
/* convert str into binary */
- i = mpn_set_str (y, mant_s, pr, base);
+ i = mpn_set_str (y, (unsigned char *) mant_s, pr, base);
/* normalize y */
count_leading_zeros (j, *(y + i - 1));
@@ -377,7 +377,7 @@ mpfr_set_str (mpfr_t x, __gmp_const unsigned char *str, int base, mp_rnd_t rnd)
}
int
-mpfr_init_set_str (mpfr_ptr x, __gmp_const unsigned char *str, int base, mp_rnd_t rnd)
+mpfr_init_set_str (mpfr_ptr x, __gmp_const char *str, int base, mp_rnd_t rnd)
{
mpfr_init (x);
return mpfr_set_str (x, str, base, rnd);