mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 23:12:44 +02:00
Origin commit data
------------------
Branch: master
Commit: 2d652aab01
Author: martii <m4rtii@gmx.de>
Date: 2013-11-21 (Thu, 21 Nov 2013)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
21 lines
292 B
C
21 lines
292 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
|