1996-11-02 10:00:46 -08:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Objective Caml */
|
|
|
|
/* */
|
|
|
|
/* Damien Doligez, projet Para, INRIA Rocquencourt */
|
|
|
|
/* */
|
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1999-11-17 10:59:06 -08:00
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
2001-12-07 05:41:02 -08:00
|
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
|
|
/* the special exception on linking described in file ../LICENSE. */
|
1996-11-02 10:00:46 -08:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/* Function declarations for non-Unix user interfaces */
|
|
|
|
|
2003-12-15 10:10:51 -08:00
|
|
|
#ifndef CAML_UI_H
|
|
|
|
#define CAML_UI_H
|
|
|
|
|
1996-11-02 10:00:46 -08:00
|
|
|
#include "config.h"
|
|
|
|
|
1997-09-02 05:55:01 -07:00
|
|
|
void ui_exit (int return_code);
|
|
|
|
int ui_read (int file_desc, char *buf, unsigned int length);
|
|
|
|
int ui_write (int file_desc, char *buf, unsigned int length);
|
|
|
|
void ui_print_stderr (char *format, void *arg);
|
2003-12-15 10:10:51 -08:00
|
|
|
|
|
|
|
#endif /* CAML_UI_H */
|