diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2006-09-21 13:54:26 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2006-09-21 13:54:26 +0000 |
commit | 0b1b6eb0c62bb06b6e7e6b1222a3f9186dbc11ee (patch) | |
tree | 7f99d6178ad4bc9b3530a28cfb01c2449d57a3a2 /otherlibs/unix/isatty.c | |
parent | ea323b26898aaa38ceddad346e89f382528411d2 (diff) |
Ajout de Unix.isatty
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@7632 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/unix/isatty.c')
-rw-r--r-- | otherlibs/unix/isatty.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/otherlibs/unix/isatty.c b/otherlibs/unix/isatty.c new file mode 100644 index 000000000..f534dd773 --- /dev/null +++ b/otherlibs/unix/isatty.c @@ -0,0 +1,22 @@ +/***********************************************************************/ +/* */ +/* Objective Caml */ +/* */ +/* Xavier Leroy, projet Gallium, INRIA Rocquencourt */ +/* */ +/* Copyright 2006 Institut National de Recherche en Informatique et */ +/* en Automatique. All rights reserved. This file is distributed */ +/* under the terms of the GNU Library General Public License, with */ +/* the special exception on linking described in file ../../LICENSE. */ +/* */ +/***********************************************************************/ + +/* $Id$ */ + +#include <mlvalues.h> +#include "unixsupport.h" + +CAMLprim value unix_isatty(value fd) +{ + return (Val_bool(isatty(Int_val(fd)))); +} |