mpfr_libmpfr_inp_str Method |
Namespace: Math.Mpfr.Native
public static size_t mpfr_inp_str( mpfr_t rop, ptr<FILE> stream, int base, mpfr_rnd_t rnd )
This function reads a word (defined as a sequence of characters between whitespace) and parses it using mpfr_set_str. See the documentation of O:Math.Mpfr.Native.mpfr_lib.mpfr_strtofr for a detailed description of the valid string formats.
// Create and initialize op. mpfr_t op = new mpfr_t(); mpfr_lib.mpfr_init2(op, 64U); // Write op to a temporary file. string pathname = System.IO.Path.GetTempFileName(); System.IO.File.WriteAllText(pathname, "123456"); // Read op from the temporary file, and assert that the number of bytes read is 6. ptr<FILE> stream = new ptr<FILE>(); _wfopen_s(out stream.Value.Value, pathname, "r"); Assert.IsTrue(mpfr_lib.mpfr_inp_str(op, stream, 10, mpfr_rnd_t.MPFR_RNDN) == 6); fclose(stream.Value.Value); // Assert that op is 123456. Assert.IsTrue(mpfr_lib.mpfr_get_ui(op, mpfr_rnd_t.MPFR_RNDN) == 123456U); // Delete temporary file. System.IO.File.Delete(pathname); // Release unmanaged memory allocated for op. mpfr_lib.mpfr_clear(op);