libeplayer3: remove debug.h

Origin commit data
------------------
Branch: master
Commit: d8eaa8ed5b
Author: martii <m4rtii@gmx.de>
Date: 2014-04-07 (Mon, 07 Apr 2014)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
martii
2014-04-07 21:28:20 +02:00
parent adae72b3f7
commit 7236e928a1
5 changed files with 0 additions and 56 deletions

View File

@@ -1,20 +0,0 @@
#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