Click or drag to resize
mpfr_libmpfr_get_patches Method
Return a null-terminated string containing the ids of the patches applied to the MPFR library (contents of the PATCHES file), separated by spaces.

Namespace:  Math.Mpfr.Native
Assembly:  Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static char_ptr mpfr_get_patches()

Return Value

Type: char_ptr
Return a null-terminated string containing the ids of the patches applied to the MPFR library (contents of the PATCHES file), separated by spaces.
Remarks

Note: If the program has been compiled with an older MPFR version and is dynamically linked with a new MPFR library version, the identifiers of the patches applied to the old (compile-time) MPFR version are not available (however this information should not have much interest in general).

Examples
// Assert no patch applied.
Assert.IsTrue(mpfr_lib.mpfr_get_patches().ToString() == "");
See Also