1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/os/os_nix.v

18 lines
312 B
Go
Raw Normal View History

2019-07-01 18:04:09 +03:00
module os
#include <dirent.h>
#include <unistd.h>
2019-07-16 02:57:03 +03:00
const (
PathSeparator = '/'
)
// get_error_msg return error code representation in string.
pub fn get_error_msg(code int) string {
_ptr_text := C.strerror(code) // voidptr?
if _ptr_text == 0 {
return ''
}
return tos(_ptr_text, C.strlen(_ptr_text))
2019-07-29 19:21:36 +03:00
}