#ifndef STRINGS_H #define STRINGS_H #include #include void uint32_to_dec(uint32_t number, char buf[10]); void uint32_to_hex(uint32_t number, char buf[8]); void uint32_to_bin(uint32_t number, char buf[32]); void uint32_to_decstring(uint32_t number, char buf[11]); void uint32_to_hexstring(uint32_t number, char buf[9]); void uint32_to_binstring(uint32_t number, char buf[33]); void trim_0s(char string[]); void uint32_to_decstringt(uint32_t number, char buf[11]); void uint32_to_hexstringt(uint32_t number, char buf[9]); size_t strlen(char string[]); void memcpy(void *dst, void *src, size_t nbytes); void *memset(void *s, int c, size_t n); #endif // STRINGS_H