home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 22 gnu
/
22-gnu.zip
/
gmp202.zip
/
mpn
/
dump.c
< prev
next >
Wrap
C/C++ Source or Header
|
1997-04-18
|
297b
|
21 lines
#include <stdio.h>
#include "gmp.h"
#include "gmp-impl.h"
void
mpn_dump (ptr, size)
mp_srcptr ptr;
mp_size_t size;
{
if (size == 0)
printf ("0\n");
{
while (size)
{
size--;
printf ("%0*lX", (int) (2 * BYTES_PER_MP_LIMB), ptr[size]);
}
printf ("\n");
}
}