diff options
author | tmk <nobody@nowhere> | 2013-05-14 16:16:57 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-05-14 16:16:57 +0900 |
commit | d9c06db60006e2191d8b86e34f651644a54426b4 (patch) | |
tree | 14b79372b1d0f0d9623b21e6dbffa73ce2036b7f /common/util.h | |
parent | b9f558b3d89fc434d6dab348698d5100ff82d16b (diff) |
Add xprintf(xitoa) from elm-chan.org
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 |