NetBurner 3.1
debugprintblock.h
1 /*NB_REVISION*/
2 
3 /*NB_COPYRIGHT*/
4 
5 #ifndef _DEBUG_PRINT_BLOCK_H_
6 #define _DEBUG_PRINT_BLOCK_H_
7 
8 /*
9  * Display of data in blocks
10  * Should be defined if needed, unnecessary burden to release code
11  *
12  */
13 /*
14  ******************************************************************************
15  *
16  * Definitions
17  *
18  ******************************************************************************
19  */
20 
21 #ifdef __cplusplus
22 extern "C"
23 {
24 #endif
25  /*
26  ******************************************************************************
27  *
28  * Print block "C" Library Interface
29  *
30  ******************************************************************************
31  */
32 
33  /*
34  ******************************************************************************
35 
36  Print Block
37  Print block of data in comma delimited format using iprintf
38 
39  Parameters:
40  typePtr - Memory needed in bytes
41  dataSize - Bytes in each data item
42  blockPtr - Buffer with block of data
43  byteCount - Byte count
44 
45  Return:
46  None
47 
48  Notes:
49  None
50  ******************************************************************************
51  */
52  void debugPrintBlock(const char *typePtr, size_t dataSize, unsigned char *blockPtr, unsigned int byteCount);
53 
54 #ifdef __cplusplus
55 };
56 #endif
57 #endif /* #ifndef _DEBUG_PRINT_BLOCK_H_ */