aboutsummaryrefslogtreecommitdiff
path: root/lib/libk/include/string.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libk/include/string.h')
-rw-r--r--lib/libk/include/string.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/libk/include/string.h b/lib/libk/include/string.h
new file mode 100644
index 0000000..45b05a5
--- /dev/null
+++ b/lib/libk/include/string.h
@@ -0,0 +1,14 @@
+#pragma once
+
+#define OCTAL 8
+#define DECIMAL 10
+#define HEX 16
+
+/**
+ * Convert int into a string
+ */
+char *itoa(char *p, int x, unsigned base);
+/**
+ * Convert unsigned int into a string
+ */
+char *utoa(char *p, unsigned x, unsigned base);