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.
25 lines
484 B
C
25 lines
484 B
C
#include "parse.h"
|
|
|
|
uint16_t prs_u16_big(struct bytestream* bs) {
|
|
return (bs_get(bs) << 8) | bs_get(bs);
|
|
}
|
|
|
|
#ifdef UNITTEST
|
|
#include <assert.h>
|
|
|
|
#undef UNITTEST
|
|
#include "buffer/bs_get.c"
|
|
#include "buffer/bs_err.c"
|
|
|
|
// mock this
|
|
ssize_t buffer_getc(buffer* b,char* c) { return 0; }
|
|
|
|
int main() {
|
|
struct bytestream bs = BS_FROM_MEMBUF("\x12\x34",2);
|
|
assert(prs_u16_big(&bs) == 0x1234);
|
|
assert(bs_err(&bs) == 0);
|
|
assert(prs_u16_big(&bs) == 0);
|
|
assert(bs_err(&bs));
|
|
}
|
|
#endif
|