123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <?xml version='1.0' encoding='iso-8859-1'?>
- <!doctype html public '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
- <html xmlns='http://www.w3c.org/1999/xhtml' lang='en-us'>
- <head>
- <title>
- hexview.c
- </title>
- <meta http-equiv='content-type' content='text/html;iso-8859-1'/>
- <meta name='generator' content='motley-tools 1.9.4 13:40:33 Feb 18 2015'/>
- <meta name='author' content='cmaier@cmassoc.net'/>
- <meta name='robots' content='noindex,nofollow'/>
- <link href='toolkit.css' rel='stylesheet' type='text/css'/>
- </head>
- <body>
- <div class='headerlink'>
- [<a href='hexstring.c.html' title=' hexstring.c '>PREV</a>]
- [<a href='toolkit.html' title=' Index '>HOME</a>]
- [<a href='hexwrite.c.html' title=' hexwrite.c '>NEXT</a>]
- </div>
- <pre>
- /*====================================================================*
- *
- * void hexview (void const * memory, size_t offset, size_t extent, FILE *fp);
- *
- * memory.h
- *
- * print memory as a hexadecimal dump showing absolute offsets and
- * an ASCII character display; this function is similar to but not
- * the same as function hexdump;
- *
- * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
- * Copyright (c) 2001-2006 by Charles Maier Associates;
- * Licensed under the Internet Software Consortium License;
- *
- *--------------------------------------------------------------------*/
- #ifndef HEXVIEW_SOURCE
- #define HEXVIEW_SOURCE
- #include <stdio.h>
- #include <ctype.h>
- #include <stdint.h>
- #include "../tools/memory.h"
- #include "../tools/number.h"
- void hexview (void const * memory, size_t offset, size_t extent, FILE *fp)
- {
- byte * origin = (byte *)(memory);
- unsigned block = 0x10;
- size_t lower = block * (offset / block);
- size_t upper = block + lower;
- size_t index = 0;
- char buffer [ADDRSIZE + 72];
- char * output;
- while (lower < offset + extent)
- {
- output = buffer + ADDRSIZE;
- for (index = lower; output-- > buffer; index >>= 4)
- {
- *output = DIGITS_HEX [index & 0x0F];
- }
- output = buffer + ADDRSIZE;
- for (index = lower; index < upper; index++)
- {
- *output++ = ' ';
- if (index < offset)
- {
- *output++ = ' ';
- *output++ = ' ';
- }
- else if (index < offset + extent)
- {
- *output++ = DIGITS_HEX [(origin [index-offset] >> 4) & 0x0F];
- *output++ = DIGITS_HEX [(origin [index-offset] >> 0) & 0x0F];
- }
- else
- {
- *output++ = ' ';
- *output++ = ' ';
- }
- }
- *output++ = ' ';
- for (index = lower; index < upper; index++)
- {
- if (index < offset)
- {
- *output++ = ' ';
- }
- else if (index < offset + extent)
- {
- unsigned c = origin [index-offset];
- *output++ = isprint (c)? c: '.';
- }
- else
- {
- *output++ = ' ';
- }
- }
- *output++ = '\n';
- *output++ = '\0';
- fputs (buffer, fp);
- lower += block;
- upper += block;
- }
- fflush (fp);
- return;
- }
- #endif
- </pre>
- <div class='footerlink'>
- [<a href='hexstring.c.html' title=' hexstring.c '>PREV</a>]
- [<a href='toolkit.html' title=' Index '>HOME</a>]
- [<a href='hexwrite.c.html' title=' hexwrite.c '>NEXT</a>]
- </div>
- </body>
- </html>
|