-
-
Notifications
You must be signed in to change notification settings - Fork 9
cstdlib
Isaac Shelton edited this page Sep 12, 2023
·
7 revisions
The functions defined are variants of functions from sys/cstdlib.adept, but have been made to work with String values instead of C-Strings or have been made to work with additional numeric types.
func atof(string String) doublefunc atoi(string String) intfunc atol(string String) longfunc atoll(string String) longfunc strtod(string String) doublefunc strtof(string String) floatfunc strtol(string String) longfunc strtoll(string String) longfunc strtoul(string String) ulongfunc strtoull(string String) ulongfunc abs(value $T~__number__) $Tfunc getenv(name String) Stringfunc getenv(name String, out result *String) successfulfunc system(command String) int
Other symbols are imported indirectly from sys/cstdlib.adept