This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
2010-10-26 12:32:45 +00:00
|
|
|
#ifndef UTIL_H
|
|
|
|
#define UTIL_H 1
|
|
|
|
|
2010-10-27 11:51:45 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
// convert to L string
|
|
|
|
#define LSTR(s) XLSTR(s)
|
|
|
|
#define XLSTR(s) L ## #s
|
|
|
|
// convert to string
|
|
|
|
#define STR(s) XSTR(s)
|
|
|
|
#define XSTR(s) #s
|
|
|
|
|
|
|
|
|
|
|
|
int bitpop(uint8_t bits);
|
|
|
|
int biton(uint8_t bits);
|
2010-10-26 12:32:45 +00:00
|
|
|
|
|
|
|
#endif
|