Help for this page

Select Code to Download


  1. or download this
    void foo(mpfr_t * x) {
         mpfr_out_str(*x, .......);
         fflush(stdout);
    }
    
  2. or download this
    SV * foo(mpfr_t * x) {
         size_t s = mpfr_out_str(*x, .......);
         fflush(stdout);
         return newSViv(s);
    }