mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-27 07:22:44 +02:00
Origin commit data
------------------
Branch: master
Commit: b8d7e5ead4
Author: max_10 <max_10@gmx.de>
Date: 2018-04-10 (Tue, 10 Apr 2018)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
22 lines
281 B
C
22 lines
281 B
C
#ifndef debug_123
|
|
#define debug_123
|
|
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
|
|
static inline void Hexdump(unsigned char *Data, int length)
|
|
{
|
|
|
|
int k;
|
|
for (k = 0; k < length; k++)
|
|
{
|
|
printf("%02x ", Data[k]);
|
|
if (((k + 1) & 31) == 0)
|
|
printf("\n");
|
|
}
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
#endif
|