mirror of
https://git.proxmox.com/git/wasi-libc
synced 2025-06-15 10:29:47 +00:00

This incoporates pieces from musl-libc, cloudlibc, cloudabi, libpreopen, and dlmalloc, as well as a significant amount of new code.
23 lines
609 B
C
23 lines
609 B
C
#include <wasi/core.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_RIGHT_FD_SEEK | __WASI_RIGHT_FD_TELL)) != 0) {
|
|
errno = __WASI_ENOTTY;
|
|
return 0;
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
extern __typeof(__isatty) isatty __attribute__((weak, alias("__isatty")));
|