1
0
mirror of https://github.com/mist-devel/mist-firmware.git synced 2026-02-02 06:21:16 +00:00
Files
mist-devel.mist-firmware/utils.h
Gyorgy Szombathelyi 840b2e0574 Move hexdump to utils
2021-06-09 00:14:50 +02:00

10 lines
242 B
C

#ifndef _UTILS_H_
#define _UTILS_H_
unsigned char bin2bcd(unsigned char in);
unsigned char bcd2bin(unsigned char in);
int _strnicmp(const char *s1, const char *s2, size_t n);
void hexdump(void *data, uint16_t size, uint16_t offset);
#endif