You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qmk_firmware/tmk_core/protocol/arm_atsam/usb/usb_util.h

11 lines
249 B

#ifndef _USB_UTIL_H_
#define _USB_UTIL_H_
int UTIL_ltoa_radix(int64_t value, char *dest, int radix);
int UTIL_ltoa(int64_t value, char *dest);
int UTIL_itoa(int value, char *dest);
int UTIL_utoa(uint32_t value, char *dest);
#endif //_USB_UTIL_H_