mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
14 lines
140 B
V
14 lines
140 B
V
module os
|
|
|
|
pub struct C.stat {
|
|
st_size u64
|
|
st_mode u32
|
|
st_mtime int
|
|
}
|
|
|
|
struct C.__stat64 {
|
|
st_size u64
|
|
st_mode u32
|
|
st_mtime int
|
|
}
|