summaryrefslogtreecommitdiff
path: root/doc/misc_functions.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/misc_functions.rst')
-rw-r--r--doc/misc_functions.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/misc_functions.rst b/doc/misc_functions.rst
index 43dacfe..c988f37 100644
--- a/doc/misc_functions.rst
+++ b/doc/misc_functions.rst
@@ -8,6 +8,8 @@ Miscellaneous functions
int HX_ffs(unsigned long z);
int HX_fls(unsigned long z);
+ float HX_flprf(float x, float y);
+ double HX_flpr(double x, double y);
void HX_zvecfree(char **);
unsigned int HX_zveclen(const char *const *);
@@ -20,6 +22,9 @@ Miscellaneous functions
Finds the last (most-significant) bit in a value and returns its
position, or ``-1`` to indicate failure.
+``HX_flpr``, ``HX_flprf``
+ Computes the Least Positive Residue of the modulo operation x % y.
+
``HX_zvecfree``
Frees the supplied Z-vector array. (Frees all array elements from the
first element to (excluding) the first ``NULL`` element.)