mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-03 16:37:16 +01: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;
|
|
}
|
|
|