zig/lib/libc/wasi/libc-bottom-half/sources/isatty.c
Frank Denis 24d8d12caf Update wasi-libc to a1c7c2c7a4b2813c6f67bd2ef6e0f430d31cebad
Some notable changes:
- `ENOENT` is returned instead of `ENOTCAPABLE` when a path has not
be pre-opened (https://github.com/WebAssembly/wasi-libc/pull/370)
- `fd_readdir()`: some implementations may not set the inode number,
so an additional call to `fstatat()` is now done in order to get it
when that happens.
2023-01-10 17:14:27 -05:00

22 lines
615 B
C
Vendored

#include <wasi/api.h>
#include <__errno.h>
#include <__function___isatty.h>
int __isatty(int fd) {
__wasi_fdstat_t statbuf;
int r = __wasi_fd_fdstat_get(fd, &statbuf);
if (r != 0) {
errno = r;
return 0;
}
// A tty is a character device that we can't seek or tell on.
if (statbuf.fs_filetype != __WASI_FILETYPE_CHARACTER_DEVICE ||
(statbuf.fs_rights_base & (__WASI_RIGHTS_FD_SEEK | __WASI_RIGHTS_FD_TELL)) != 0) {
errno = __WASI_ERRNO_NOTTY;
return 0;
}
return 1;
}
extern __typeof(__isatty) isatty __attribute__((weak, alias("__isatty")));