summaryrefslogtreecommitdiff
path: root/common/util.h
diff options
context:
space:
mode:
authortmk2012-11-24 16:34:59 +0900
committertmk2012-11-24 16:34:59 +0900
commit94b4fba6e6afa6d7d68051a1ceb6987bb6002ccd (patch)
treebd9f35b876d13bca20c7655fbbb93f4733aea0dd /common/util.h
parent83f0e800e53a6d91a814d19f94bc5401a6322971 (diff)
Add bitpop16() in util.c.
Diffstat (limited to 'common/util.h')
-rw-r--r--common/util.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/util.h b/common/util.h
index 87636c971..c3734487f 100644
--- a/common/util.h
+++ b/common/util.h
@@ -16,7 +16,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef UTIL_H
-#define UTIL_H 1
+#define UTIL_H
#include <stdint.h>
@@ -29,6 +29,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
uint8_t bitpop(uint8_t bits);
+uint8_t bitpop16(uint16_t bits);
uint8_t biton(uint8_t bits);
#endif