mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
14 lines
184 B
C++
14 lines
184 B
C++
|
#include "ebml_unsigned.h"
|
||
|
|
||
|
uint64_t unsigned_read_ptr_len(uint64_t len, const uint8_t *ptr)
|
||
|
{
|
||
|
uint64_t val=*ptr++;
|
||
|
while (--len)
|
||
|
{
|
||
|
val <<= 8;
|
||
|
val |= *ptr++;
|
||
|
}
|
||
|
return val;
|
||
|
}
|
||
|
|