1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #ifndef HEXOUT_SOURCE
- #define HEXOUT_SOURCE
- #include <stdio.h>
- #include <ctype.h>
- #include "../tools/memory.h"
- #include "../tools/number.h"
- void hexout (void const * memory, size_t extent, char c, char e, FILE * fp)
- {
- byte * offset = (byte *)(memory);
- while (extent--)
- {
- putc (DIGITS_HEX [(* offset >> 4) & 0x0F], fp);
- putc (DIGITS_HEX [(* offset >> 0) & 0x0F], fp);
- if ((extent) && (c))
- {
- putc (c, fp);
- }
- offset++;
- }
- if (e)
- {
- putc (e, fp);
- }
- return;
- }
- #endif
|