mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-18 08:58:23 +00:00
9 lines
167 B
Odin
9 lines
167 B
Odin
package os2
|
|
|
|
import "base:runtime"
|
|
|
|
@(private)
|
|
_read_directory :: proc(f: ^File, n: int, allocator: runtime.Allocator) -> (files: []File_Info, err: Error) {
|
|
return
|
|
}
|