hex_dump()

    #include <mplib1/dumphex.h>

    int hexdump( FILE *fp, char *where, int how_much );
This function outputs to the requested file a given block of memory in hexadecimal format, with any valid ASCII characters also displayed.

The memory to be display is pointed to by the where pointer, and the quantity of memory to be display is given by the how_much parameter.

This function is actually just a wrapper for do_hex_dump() where the curoff parameter is zero.