blob: adb815ef48a8624391b55464c7b83b24c6ac3ffe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/**************************************************************************/
/* */
/* OCaml */
/* */
/* David Allsopp, OCaml Labs, Cambridge. */
/* */
/* Copyright 2017 MetaStack Solutions Ltd. */
/* */
/* All rights reserved. This file is distributed under the terms of */
/* the GNU Lesser General Public License version 2.1, with the */
/* special exception on linking described in the file LICENSE. */
/* */
/**************************************************************************/
#define CAML_INTERNALS
#include <caml/mlvalues.h>
#include <caml/osdeps.h>
#include "unixsupport.h"
CAMLprim value caml_unix_isatty(value fd)
{
return Val_bool(caml_win32_isatty(caml_win32_CRT_fd_of_filedescr(fd)));
}
|