blob: 2d03c089c43a2071eafd95b99d278742deab93db (
plain)
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
53
54
55
56
57
58
59
60
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2010-2014 Intel Corporation
*/
#ifndef _RTE_HEXDUMP_H_
#define _RTE_HEXDUMP_H_
/**
* @file
* Simple API to dump out memory in a special hex format.
*/
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* Dump out memory in a special hex dump format.
*
* @param f
* A pointer to a file for output
* @param title
* If not NULL this string is printed as a header to the output.
* @param buf
* This is the buffer address to print out.
* @param len
* The number of bytes to dump out
* @return
* None.
*/
extern void
rte_hexdump(FILE *f, const char * title, const void * buf, unsigned int len);
/**
* Dump out memory in a hex format with colons between bytes.
*
* @param f
* A pointer to a file for output
* @param title
* If not NULL this string is printed as a header to the output.
* @param buf
* This is the buffer address to print out.
* @param len
* The number of bytes to dump out
* @return
* None.
*/
void
rte_memdump(FILE *f, const char * title, const void * buf, unsigned int len);
#ifdef __cplusplus
}
#endif
#endif /* _RTE_HEXDUMP_H_ */
|