From f4aef385bdd41b02ef58b5366fa9318ecdc6e37e Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sun, 5 Dec 2021 16:53:55 -0800 Subject: =?UTF-8?q?Chore:=20updated=20fs=C2=B7walk=20to=20use=20new=20data?= =?UTF-8?q?=20structures?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Completes the port to our standard library (up to malloc). --- include/base/string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/base/string.h b/include/base/string.h index a59c553..20bf21b 100644 --- a/include/base/string.h +++ b/include/base/string.h @@ -35,7 +35,7 @@ double str·atof(char *s); char *str·itoa(char *s, int x); /* nicer */ -vlong str·asint(char *s, char **end); +long str·asint(char *s, char **end, int base); double str·asfloat(char *s, char **end); /* augmented string functions */ -- cgit v1.2.1