diff options
author | tmk <nobody@nowhere> | 2013-05-14 23:03:23 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-05-14 23:03:23 +0900 |
commit | cbb9c408e46a7a7a567f3d6e07713256152106d0 (patch) | |
tree | bd8e7c789fbb7f191b4de31498160f05d2f80229 /common/util.h | |
parent | b9f558b3d89fc434d6dab348698d5100ff82d16b (diff) | |
parent | ff2d276b193632136c785d92ed01df48aea8461f (diff) |
Merge branch 'fix_print'
Diffstat (limited to 'common/util.h')
-rw-r--r-- | common/util.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/util.h b/common/util.h index 4b8b5ca3a4..7451cc084d 100644 --- a/common/util.h +++ b/common/util.h @@ -36,4 +36,8 @@ uint8_t biton(uint8_t bits); uint8_t biton16(uint16_t bits); uint8_t biton32(uint32_t bits); +uint8_t bitrev(uint8_t bits); +uint16_t bitrev16(uint16_t bits); +uint32_t bitrev32(uint32_t bits); + #endif |