aboutsummaryrefslogtreecommitdiff
path: root/src/libmach/hexify.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libmach/hexify.c')
-rw-r--r--src/libmach/hexify.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/libmach/hexify.c b/src/libmach/hexify.c
new file mode 100644
index 00000000..5f3ed50e
--- /dev/null
+++ b/src/libmach/hexify.c
@@ -0,0 +1,20 @@
+#include <u.h>
+#include <libc.h>
+#include <bio.h>
+#include <mach.h>
+
+char *
+_hexify(char *buf, ulong p, int zeros)
+{
+ ulong d;
+
+ d = p/16;
+ if(d)
+ buf = _hexify(buf, d, zeros-1);
+ else
+ while(zeros--)
+ *buf++ = '0';
+ *buf++ = "0123456789abcdef"[p&0x0f];
+ return buf;
+}
+