summaryrefslogtreecommitdiffstats
path: root/_h5_imodule_8h.html
diff options
context:
space:
mode:
authorlrknox <lrknox@users.noreply.github.com>2023-10-31 00:47:50 (GMT)
committerlrknox <lrknox@users.noreply.github.com>2023-10-31 00:47:50 (GMT)
commitadfd1f4fb9d41ae50ee6a2adf9c2900a6b22706a (patch)
tree2328984066db9e5b9e392eb7548580d23184443a /_h5_imodule_8h.html
parentf5c1d01db77d63a0791663714c218df6356cce16 (diff)
downloadhdf5-adfd1f4fb9d41ae50ee6a2adf9c2900a6b22706a.zip
hdf5-adfd1f4fb9d41ae50ee6a2adf9c2900a6b22706a.tar.gz
hdf5-adfd1f4fb9d41ae50ee6a2adf9c2900a6b22706a.tar.bz2
deploy: 87b3e7c8211d9c587589f4d8d2965efb119fbf6d
Diffstat (limited to '_h5_imodule_8h.html')
-rw-r--r--_h5_imodule_8h.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/_h5_imodule_8h.html b/_h5_imodule_8h.html
index 786132f..bdced19 100644
--- a/_h5_imodule_8h.html
+++ b/_h5_imodule_8h.html
@@ -37,7 +37,7 @@
<td id="projectlogo"><img alt="Logo" src="HDFG-logo.png"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname"><a href="https://www.hdfgroup.org">HDF5</a>
- &#160;<span id="projectnumber">1.15.0</span>
+ &#160;<span id="projectnumber">1.15.0.87b3e7c</span>
</div>
<div id="projectbrief">API Reference</div>
</td>
tion value='core_8_0_5_synthetic'>core_8_0_5_synthetic Tcl is a high-level, general-purpose, interpreted, dynamic programming language. It was designed with the goal of being very simple but powerful.
summaryrefslogtreecommitdiffstats
path: root/libtommath/bn_mp_mod_d.c
blob: d8722f06cefed0928f57fe7d392a84c03ff5288c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <tommath_private.h>
#ifdef BN_MP_MOD_D_C
/* LibTomMath, multiple-precision integer library -- Tom St Denis
 *
 * LibTomMath is a library that provides multiple-precision
 * integer arithmetic as well as number theoretic functionality.
 *
 * The library was designed directly after the MPI library by
 * Michael Fromberger but has been written from scratch with
 * additional optimizations in place.
 *
 * The library is free for all purposes without any express
 * guarantee it works.
 *
 * Tom St Denis, tstdenis82@gmail.com, http://libtom.org
 */

int
mp_mod_d (mp_int * a, mp_digit b, mp_digit * c)
{
  return mp_div_d(a, b, NULL, c);
}
#endif

/* $Source$ */
/* $Revision$ */
/* $Date$ */