From 99e183a2f569729d722d83503cb851d6198fc1fe Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 23 Jul 2020 13:10:22 +0200 Subject: Some functions for stdlib --- src/lib/inc/conv.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/lib/inc/conv.h (limited to 'src/lib/inc/conv.h') diff --git a/src/lib/inc/conv.h b/src/lib/inc/conv.h new file mode 100644 index 0000000..8295756 --- /dev/null +++ b/src/lib/inc/conv.h @@ -0,0 +1,13 @@ +// MIT License, Copyright (c) 2020 Marvin Borner + +#ifndef CONV_H +#define CONV_H + +#include + +int atoi(char *str); +char *htoa(u32 n); +int htoi(char *str); +char *itoa(int n); + +#endif -- cgit v1.2.3