aboutsummaryrefslogtreecommitdiff
path: root/include/kern/lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/kern/lib.h')
-rw-r--r--include/kern/lib.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/kern/lib.h b/include/kern/lib.h
new file mode 100644
index 0000000..be0e8e9
--- /dev/null
+++ b/include/kern/lib.h
@@ -0,0 +1,10 @@
+#ifndef LIB_H_
+#define LIB_H_
+
+#include <stdint.h>
+
+void hexify(uint32_t v, char* into);
+
+void decimalify(int v, char* into);
+
+#endif