You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
451 B
C
22 lines
451 B
C
4 years ago
|
#include "parse.h"
|
||
|
|
||
|
uint64_t prs_u64_big(struct bytestream* bs) {
|
||
|
unsigned int i;
|
||
|
uint64_t x = bs_get(bs);
|
||
|
for (i=1; i<8; ++i)
|
||
|
x = (x << 8) | bs_get(bs);
|
||
|
return x;
|
||
|
}
|
||
|
|
||
|
#ifdef UNITTEST
|
||
|
#include <assert.h>
|
||
|
|
||
|
int main() {
|
||
|
struct bytestream bs = BS_FROM_MEMBUF("\xde\xad\xbe\xef\x12\x34\x56\x78",8);
|
||
|
assert(prs_u64_big(&bs) == 0xdeadbeef12345678);
|
||
|
assert(bs_err(&bs) == 0);
|
||
|
assert(prs_u64_big(&bs) == 0);
|
||
|
assert(bs_err(&bs));
|
||
|
}
|
||
|
#endif
|