From d94b024b73aeca06de417e0fd3c502495312a8b2 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 7 Dec 2019 13:40:28 +0100 Subject: Added userspace libc and began userspace based shell --- src/kernel/lib/stdlib.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/kernel/lib/stdlib.h (limited to 'src/kernel/lib/stdlib.h') diff --git a/src/kernel/lib/stdlib.h b/src/kernel/lib/stdlib.h new file mode 100644 index 0000000..fb79f42 --- /dev/null +++ b/src/kernel/lib/stdlib.h @@ -0,0 +1,26 @@ +#ifndef MELVIX_STDLIB_H +#define MELVIX_STDLIB_H + +#include + +#ifndef MELVIX_ALLOC_H + +#include + +#endif + +#ifndef MELVIX_STRING_H + +#include + +#endif + +char *itoa(int n); + +int atoi(char *str); + +char *htoa(uint32_t n); + +int htoi(char *str); + +#endif -- cgit v1.2.3