OS.listdir

This commit is contained in:
2025-06-03 13:31:04 +02:00
parent 946ab52a19
commit cebc3d1822
5 changed files with 58 additions and 28 deletions

View File

@@ -19,7 +19,7 @@ func substr[s: String, start: I64, length: I64] : String
strlcpy(out, s + start, length + 1)
return out
func strrev[s: String] : String
func String.rev[s: String] : String
let len: I64 = strlen(s)
let out: String = malloc(len + 1)