From 668655053911072741883fd258c23e9d0668a853 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Thu, 8 Jun 2023 19:52:43 +0200 Subject: libc: move the strto* functions to stdlib.h, where they "belong" --- src/user/lib/include/string.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/user/lib/include/string.h') diff --git a/src/user/lib/include/string.h b/src/user/lib/include/string.h index 7a5400c..343664d 100644 --- a/src/user/lib/include/string.h +++ b/src/user/lib/include/string.h @@ -1,11 +1,6 @@ #pragma once #include -// TODO move strto* to stdlib.h -long strtol(const char *restrict s, char **restrict end, int base); -unsigned long strtoul(const char *restrict s, char **restrict end, int base); -unsigned long long strtoull(const char *restrict s, char **restrict end, int base); -double strtod(const char *restrict s, char **restrict end); char *strchr(const char *s, int c); char *strrchr(const char *s, int c); -- cgit v1.2.3