From 5d958f8af1646f9cb4763bb2f020bb2e6de8a3c0 Mon Sep 17 00:00:00 2001 From: nic-gaffney Date: Tue, 27 Jun 2023 03:19:39 -0500 Subject: help --- std/stdlib.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'std/stdlib.c') diff --git a/std/stdlib.c b/std/stdlib.c index f405b6f..9510866 100644 --- a/std/stdlib.c +++ b/std/stdlib.c @@ -17,3 +17,12 @@ char charAt(char *str, int x) { int parse_int(char *str) { return (int) atoi(str); } + +int as_int(float x) { + return (int) x; +} + +char* istr(int x) { + char snum[100]; + return (char* )itoa(x, snum, 10); +} -- cgit v1.2.3