Skip to content

Commit

Permalink
adding missing extern
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Lemire committed Dec 16, 2023
1 parent c6e7c37 commit 7e655f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/roaring.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ extern "C" { namespace roaring { namespace api {

#define CROARING_SERIALIZATION_ARRAY_UINT32 1
#define CROARING_SERIALIZATION_CONTAINER 2

extern inline int roaring_trailing_zeroes(unsigned long long input_num);
extern inline int roaring_leading_zeroes(unsigned long long input_num);
extern inline void roaring_bitmap_init_cleared(roaring_bitmap_t *r);
extern inline bool roaring_bitmap_get_copy_on_write(const roaring_bitmap_t* r);
extern inline void roaring_bitmap_set_copy_on_write(roaring_bitmap_t* r, bool cow);
Expand Down

0 comments on commit 7e655f7

Please sign in to comment.