summaryrefslogtreecommitdiff
path: root/tmk_core/protocol/arm_atsam/usb/usb_util.h
blob: 3e5b4fbb3245dba42b4400e1e18f4799b4bc9e44 (plain)
1
2
3
4
5
6
7
8
9
#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_