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)
Syntaxpublic static char_ptr mpfr_get_patches()
Public Shared Function mpfr_get_patches As char_ptr
public:
static char_ptr mpfr_get_patches()
static member mpfr_get_patches : unit -> char_ptr
Return Value
Type:
char_ptrReturn 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.IsTrue(mpfr_lib.mpfr_get_patches().ToString() == "");
Assert.IsTrue(mpfr_lib.mpfr_get_patches().ToString() = "")
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also