mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
14 lines
175 B
C
14 lines
175 B
C
module std::io::file;
|
|
import libc;
|
|
|
|
|
|
|
|
fn bool is_file(String path)
|
|
{
|
|
return os::native_is_file(path);
|
|
}
|
|
|
|
fn usz! get_size(String path)
|
|
{
|
|
return os::native_file_size(path);
|
|
} |