This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
qmk_firmware/util.h

18 lines
251 B
C
Raw Normal View History

#ifndef UTIL_H
#define UTIL_H 1
2010-10-27 20:51:45 +09: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);
#endif