mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
18 lines
267 B
C
18 lines
267 B
C
module std::io;
|
|
|
|
interface File : Closable, Readable, Seekable
|
|
{
|
|
FileInfo[]! readdir(int count);
|
|
FileInfo! stat();
|
|
}
|
|
|
|
|
|
interface File
|
|
{
|
|
inline Closable;
|
|
inline Readable;
|
|
inline Seekable;
|
|
FileInfo[]! readdir(int count);
|
|
FileInfo! stat();
|
|
}
|