001756585ef782201567ed6e231b8b2ccd338b87
[m6w6/ext-psi] / tests / stat / stat.psi
1 extern int __xstat64(int ver, char *path, struct stat *buf);
2 function psi\stat(string $path, array &$buf = NULL) : int {
3 let ver = NULL;
4 let path = strval($path);
5 let buf = calloc(1, struct stat);
6 return to_int(__xstat64);
7 set $buf = to_array(*buf);
8 }