mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-27 07:23:11 +02:00
This imports libeplayer3 as of commit 9160371ccc6 (2012-02-02) git://gitorious.org/open-duckbox-project-sh4/tdt.git It would be better to use the original repo, but I need too many changes for now :-(
22 lines
311 B
C
22 lines
311 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
|