diff options
author | Marvin Borner | 2020-05-06 19:04:05 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-06 19:04:05 +0200 |
commit | d94ffac4a584dc7a4f6f2ec567b8caab05ce9253 (patch) | |
tree | 559cd596a0a407d4b40c1d12d3c6a0686494da16 /src/kernel/lib/stdlib | |
parent | 1a8563a05608b5b5e27eada44cf4790926001c68 (diff) |
New build parameters and shared includes
This changes many files but I've just applied some replace commands.. So
- nothing special!
Diffstat (limited to 'src/kernel/lib/stdlib')
-rw-r--r-- | src/kernel/lib/stdlib/atoi.c | 10 | ||||
-rw-r--r-- | src/kernel/lib/stdlib/htoa.c | 6 | ||||
-rw-r--r-- | src/kernel/lib/stdlib/htoi.c | 8 | ||||
-rw-r--r-- | src/kernel/lib/stdlib/itoa.c | 14 |
4 files changed, 19 insertions, 19 deletions
diff --git a/src/kernel/lib/stdlib/atoi.c b/src/kernel/lib/stdlib/atoi.c index 2d58d84..cd855ab 100644 --- a/src/kernel/lib/stdlib/atoi.c +++ b/src/kernel/lib/stdlib/atoi.c @@ -1,19 +1,19 @@ -#include <kernel/lib/math.h> +#include <lib/math.h> #include <stddef.h> #include <stdint.h> -#include <kernel/lib/string.h> +#include <lib/string.h> int atoi(char *str) { - size_t s_str = strlen(str); + u32 s_str = strlen(str); if (!s_str) return 0; - uint8_t negative = 0; + u8 negative = 0; if (str[0] == '-') negative = 1; - size_t i = 0; + u32 i = 0; if (negative) i++; diff --git a/src/kernel/lib/stdlib/htoa.c b/src/kernel/lib/stdlib/htoa.c index ee639ec..7a535dd 100644 --- a/src/kernel/lib/stdlib/htoa.c +++ b/src/kernel/lib/stdlib/htoa.c @@ -1,10 +1,10 @@ #include <stdint.h> -#include <kernel/lib/string.h> -#include <kernel/memory/alloc.h> +#include <lib/string.h> +#include <memory/alloc.h> static const char HTOA_TABLE[] = "0123456789ABCDEF"; -char *htoa(uint32_t n) +char *htoa(u32 n) { char *ret = (char *)kmalloc(10); diff --git a/src/kernel/lib/stdlib/htoi.c b/src/kernel/lib/stdlib/htoi.c index dcc4b63..7d05239 100644 --- a/src/kernel/lib/stdlib/htoi.c +++ b/src/kernel/lib/stdlib/htoi.c @@ -1,12 +1,12 @@ -#include <kernel/lib/math.h> +#include <lib/math.h> #include <stddef.h> -#include <kernel/lib/string.h> +#include <lib/string.h> int htoi(char *str) { - size_t s_str = strlen(str); + u32 s_str = strlen(str); - size_t i = 0; + u32 i = 0; int ret = 0; for (; i < s_str; i++) { char c = str[i]; diff --git a/src/kernel/lib/stdlib/itoa.c b/src/kernel/lib/stdlib/itoa.c index 5bb3359..165e260 100644 --- a/src/kernel/lib/stdlib/itoa.c +++ b/src/kernel/lib/stdlib/itoa.c @@ -1,8 +1,8 @@ -#include <kernel/lib/math.h> +#include <lib/math.h> #include <stdint.h> -#include <kernel/lib/string.h> -#include <kernel/memory/alloc.h> -#include <kernel/memory/paging.h> +#include <lib/string.h> +#include <memory/alloc.h> +#include <memory/paging.h> static const char ITOA_TABLE[] = "0123456789"; @@ -14,7 +14,7 @@ char *itoa(int n) ret[1] = 0; return ret; } - uint8_t negative = (uint8_t)(n < 0); + u8 negative = (u8)(n < 0); if (negative) n *= -1; @@ -22,7 +22,7 @@ char *itoa(int n) for (sz = 0; n % pow(10, sz) != n; sz++) { } - char *ret = (char *)kmalloc((uint32_t)(sz + 1)); + char *ret = (char *)kmalloc((u32)(sz + 1)); for (int i = 0; i < sz; i++) { int digit = (n % pow(10, i + 1)) / pow(10, i); @@ -31,7 +31,7 @@ char *itoa(int n) ret[sz] = 0; if (negative) { - char *aux = (char *)kmalloc((uint32_t)(sz + 2)); + char *aux = (char *)kmalloc((u32)(sz + 2)); strcpy(aux, ret); aux[sz] = '-'; aux[sz + 1] = 0; |