Skip to content

Commit

Permalink
DO NOT MERGE: testing comments on header guards.
Browse files Browse the repository at this point in the history
  • Loading branch information
roconnor-blockstream committed Mar 29, 2023
1 parent 639cba5 commit 0de6797
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/simplicity/bitstream.h
Expand Up @@ -75,4 +75,5 @@ int32_t decodeUptoMaxInt(bitstream* stream);
* NULL != stream
*/
int32_t readBitstring(bitstring* result, size_t n, bitstream* stream);
#endif

#endif /* SIMPLICITY_BITSTREAM_H */
2 changes: 1 addition & 1 deletion src/simplicity/bitstring.h
Expand Up @@ -32,4 +32,4 @@ static inline bool getBit(const bitstring *s, size_t n) {
return 1 & (s->arr[total_offset / CHAR_BIT] >> (CHAR_BIT - 1 - (total_offset % CHAR_BIT)));
}

#endif
#endif /* SIMPLICITY_BITSTRING_H */

0 comments on commit 0de6797

Please sign in to comment.