aboutsummaryrefslogtreecommitdiff
path: root/lib/inc/conv.h
diff options
context:
space:
mode:
authorMarvin Borner2020-08-09 16:51:01 +0200
committerMarvin Borner2020-08-09 16:51:01 +0200
commit162d024a53e1e31e00ff0b6f47dd4590edebc551 (patch)
tree711d3886c300dfaddffdafaa89b690b45eb2101d /lib/inc/conv.h
parent79f2fa136f26a0b87917336e089485712ee49bd6 (diff)
Heavy restructuring of libc, kernel and apps
Diffstat (limited to 'lib/inc/conv.h')
-rw-r--r--lib/inc/conv.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/inc/conv.h b/lib/inc/conv.h
new file mode 100644
index 0000000..d878deb
--- /dev/null
+++ b/lib/inc/conv.h
@@ -0,0 +1,15 @@
+// MIT License, Copyright (c) 2020 Marvin Borner
+
+#ifndef CONV_H
+#define CONV_H
+
+#include <def.h>
+
+int atoi(char *str);
+char *htoa(u32 n);
+int htoi(char *str);
+char *itoa(int n);
+
+char *conv_base(int value, char *result, int base, int is_signed);
+
+#endif