add libeplayer3-arm test

This commit is contained in:
max_10
2017-12-16 23:41:01 +01:00
committed by Thilo Graf
parent f28d013972
commit b75f8393c2
101 changed files with 28366 additions and 21 deletions

View 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