forked from qca/open-plc-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhexout.c
53 lines (45 loc) · 1.15 KB
/
hexout.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*====================================================================*
*
* void hexout (void const * memory, size_t extent, char c, char e, FILE * fp);
*
* memory.h
*
* print memory as a series of hexadecimal octets seperated by
* character c; normally, character c will be HEX_EXTENDER as
* defined in number.h;
*
* for example, hexout (memory, 6, ':', ';', stdout) would print:
*
* 00:B0:52:00:00:01;
*
* Motley Tools by Charles Maier <[email protected]>;
* Copyright (c) 2001-2006 by Charles Maier Associates;
* Licensed under the Internet Software Consortium License;
*
*--------------------------------------------------------------------*/
#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