mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-27 07:23:11 +02:00
add libeplayer3-arm test
This commit is contained in:
19
libeplayer3-arm/include/debug.h
Normal file
19
libeplayer3-arm/include/debug.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#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
|
Reference in New Issue
Block a user