hexpump.c 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*====================================================================*
  2. *
  3. * void hexpump (void const * memory, size_t extent, FILE * fp);
  4. *
  5. * memory.h
  6. *
  7. * print a memory region as a brief hex dump;
  8. *
  9. * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
  10. * Copyright (c) 2001-2006 by Charles Maier Associates;
  11. * Licensed under the Internet Software Consortium License;
  12. *
  13. *--------------------------------------------------------------------*/
  14. #ifndef HEXPUMP_SOURCE
  15. #define HEXPUMP_SOURCE
  16. #include <stdio.h>
  17. #include <ctype.h>
  18. #include "../tools/memory.h"
  19. #include "../tools/number.h"
  20. void hexpump (void const * memory, size_t extent, FILE * fp)
  21. {
  22. byte const * origin = (byte const *) (memory);
  23. byte const * offset = (byte const *) (memory);
  24. while (extent--)
  25. {
  26. if (offset != origin)
  27. {
  28. putc ((offset - origin) & 0x0F? ' ': '\n', fp);
  29. }
  30. putc (DIGITS_HEX [(* offset >> 4) & 0x0F], fp);
  31. putc (DIGITS_HEX [(* offset >> 0) & 0x0F], fp);
  32. offset++;
  33. }
  34. putc ('\n', fp);
  35. return;
  36. }
  37. #endif