Files
mars-libowfat/fmt/fmt_tohex.c
2025-01-20 18:40:47 +00:00

7 lines
94 B
C

#include <libowfat/fmt.h>
char fmt_tohex(char c) {
return (char)(c>=10?c-10+'a':c+'0');
}