We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2.7/cstdio.adept
The functions defined are variants of functions from sys/cstdio.adept, but have been made to work with String values instead of C-Strings.
sys/cstdio.adept
String
func printf(format String, arguments ...) int
func fprintf(file *FILE, format String, arguments ...) int
func remove(filename String) int
func rename(old_name String, new_name String) int
func fopen(filename String, mode String) *FILE
func freopen(filename String, mode String, stream *FILE) *FILE
func scanf(format String, ...) int
func fscanf(file *FILE, format String, ...) int
func sscanf(string String, format String, ...) int
func fgets(max_line int, file *FILE) String
func fgets(max_line int, file *FILE, out result *String) successful
func fputs(string String, file *FILE) int
func gets() String
Other symbols are imported indirectly from sys/cstdio.adept
Table of Contents