aboutsummaryrefslogtreecommitdiff
path: root/strings.h
diff options
context:
space:
mode:
Diffstat (limited to 'strings.h')
-rw-r--r--strings.h22
1 files changed, 16 insertions, 6 deletions
diff --git a/strings.h b/strings.h
index 8d4b511..bfe6fd0 100644
--- a/strings.h
+++ b/strings.h
@@ -3,12 +3,22 @@
#include <stdint.h>
-static inline void uint32_to_bits(uint32_t number, char *buf)
-{
- for (int i = 0; i < 32; i++)
- buf[i] = ((number >> (32 - i - 1)) & 1) ? '1' : '0';
+void uint32_to_dec(uint32_t number, char buf[10]);
- buf[32] = '\0';
-}
+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]);
#endif // STRINGS_H