mirror of
https://github.com/moparisthebest/tmk_keyboard
synced 2024-11-10 11:25:01 -05:00
18 lines
251 B
C
18 lines
251 B
C
#ifndef UTIL_H
|
|
#define UTIL_H 1
|
|
|
|
#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);
|
|
|
|
#endif
|