aboutsummaryrefslogtreecommitdiff
path: root/include/base
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-12-05 16:53:55 -0800
committerNicholas Noll <nbnoll@eml.cc>2021-12-05 17:04:55 -0800
commitf4aef385bdd41b02ef58b5366fa9318ecdc6e37e (patch)
tree72642760a08f8c4d81dc8e13b57c0b6081e48c76 /include/base
parentb4cb7c06f94e2e91b22b7d82efd7943a82331d86 (diff)
Chore: updated fs·walk to use new data structures
Completes the port to our standard library (up to malloc).
Diffstat (limited to 'include/base')
-rw-r--r--include/base/string.h2
1 files changed, 1 insertions, 1 deletions
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 */