]> git.donarmstrong.com Git - qmk_firmware.git/blob - tmk_core/protocol/arm_atsam/usb/usb_util.h
Massdrop keyboard support (#3780)
[qmk_firmware.git] / tmk_core / protocol / arm_atsam / usb / usb_util.h
1 #ifndef _USB_UTIL_H_
2 #define _USB_UTIL_H_
3
4 int UTIL_ltoa_radix(int64_t value, char *dest, int radix);
5 int UTIL_ltoa(int64_t value, char *dest);
6 int UTIL_itoa(int value, char *dest);
7 int UTIL_utoa(uint32_t value, char *dest);
8
9 #endif //_USB_UTIL_H_
10