diff options
Diffstat (limited to 'otherlibs/graph')
-rw-r--r-- | otherlibs/graph/color.c | 13 | ||||
-rw-r--r-- | otherlibs/graph/draw.c | 13 | ||||
-rw-r--r-- | otherlibs/graph/dump_img.c | 13 | ||||
-rw-r--r-- | otherlibs/graph/events.c | 13 | ||||
-rw-r--r-- | otherlibs/graph/fill.c | 13 | ||||
-rw-r--r-- | otherlibs/graph/graphics.ml | 13 | ||||
-rw-r--r-- | otherlibs/graph/graphics.mli | 13 | ||||
-rw-r--r-- | otherlibs/graph/image.c | 13 | ||||
-rw-r--r-- | otherlibs/graph/image.h | 13 | ||||
-rw-r--r-- | otherlibs/graph/libgraph.h | 13 | ||||
-rw-r--r-- | otherlibs/graph/make_img.c | 13 | ||||
-rw-r--r-- | otherlibs/graph/open.c | 13 | ||||
-rw-r--r-- | otherlibs/graph/point_col.c | 13 | ||||
-rw-r--r-- | otherlibs/graph/sound.c | 13 | ||||
-rw-r--r-- | otherlibs/graph/text.c | 13 |
15 files changed, 195 insertions, 0 deletions
diff --git a/otherlibs/graph/color.c b/otherlibs/graph/color.c index 22ffc2925..cc6cadd26 100644 --- a/otherlibs/graph/color.c +++ b/otherlibs/graph/color.c @@ -1,3 +1,16 @@ +/***********************************************************************/ +/* */ +/* Caml Special Light */ +/* */ +/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */ +/* */ +/* Copyright 1995 Institut National de Recherche en Informatique et */ +/* Automatique. Distributed only by permission. */ +/* */ +/***********************************************************************/ + +/* $Id$ */ + #include "libgraph.h" /* Cache to speed up the translation rgb -> pixel value. */ diff --git a/otherlibs/graph/draw.c b/otherlibs/graph/draw.c index 8f41b5988..d2c4f8e69 100644 --- a/otherlibs/graph/draw.c +++ b/otherlibs/graph/draw.c @@ -1,3 +1,16 @@ +/***********************************************************************/ +/* */ +/* Caml Special Light */ +/* */ +/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */ +/* */ +/* Copyright 1995 Institut National de Recherche en Informatique et */ +/* Automatique. Distributed only by permission. */ +/* */ +/***********************************************************************/ + +/* $Id$ */ + #include "libgraph.h" #include <alloc.h> diff --git a/otherlibs/graph/dump_img.c b/otherlibs/graph/dump_img.c index 1578acb36..f3b09fe26 100644 --- a/otherlibs/graph/dump_img.c +++ b/otherlibs/graph/dump_img.c @@ -1,3 +1,16 @@ +/***********************************************************************/ +/* */ +/* Caml Special Light */ +/* */ +/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */ +/* */ +/* Copyright 1995 Institut National de Recherche en Informatique et */ +/* Automatique. Distributed only by permission. */ +/* */ +/***********************************************************************/ + +/* $Id$ */ + #include "libgraph.h" #include "image.h" #include <memory.h> diff --git a/otherlibs/graph/events.c b/otherlibs/graph/events.c index 7cb949d9b..c82a7461f 100644 --- a/otherlibs/graph/events.c +++ b/otherlibs/graph/events.c @@ -1,3 +1,16 @@ +/***********************************************************************/ +/* */ +/* Caml Special Light */ +/* */ +/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */ +/* */ +/* Copyright 1995 Institut National de Recherche en Informatique et */ +/* Automatique. Distributed only by permission. */ +/* */ +/***********************************************************************/ + +/* $Id$ */ + #include <signal.h> #include "libgraph.h" #include <alloc.h> diff --git a/otherlibs/graph/fill.c b/otherlibs/graph/fill.c index 66e728553..990d8f68a 100644 --- a/otherlibs/graph/fill.c +++ b/otherlibs/graph/fill.c @@ -1,3 +1,16 @@ +/***********************************************************************/ +/* */ +/* Caml Special Light */ +/* */ +/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */ +/* */ +/* Copyright 1995 Institut National de Recherche en Informatique et */ +/* Automatique. Distributed only by permission. */ +/* */ +/***********************************************************************/ + +/* $Id$ */ + #include "libgraph.h" #include <memory.h> diff --git a/otherlibs/graph/graphics.ml b/otherlibs/graph/graphics.ml index c9e5f1551..7c3045670 100644 --- a/otherlibs/graph/graphics.ml +++ b/otherlibs/graph/graphics.ml @@ -1,3 +1,16 @@ +(***********************************************************************) +(* *) +(* Caml Special Light *) +(* *) +(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *) +(* *) +(* Copyright 1995 Institut National de Recherche en Informatique et *) +(* Automatique. Distributed only by permission. *) +(* *) +(***********************************************************************) + +(* $Id$ *) + exception Graphic_failure of string (* Initializations *) diff --git a/otherlibs/graph/graphics.mli b/otherlibs/graph/graphics.mli index 9397432ff..b6a91f6f7 100644 --- a/otherlibs/graph/graphics.mli +++ b/otherlibs/graph/graphics.mli @@ -1,3 +1,16 @@ +(***********************************************************************) +(* *) +(* Caml Special Light *) +(* *) +(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *) +(* *) +(* Copyright 1995 Institut National de Recherche en Informatique et *) +(* Automatique. Distributed only by permission. *) +(* *) +(***********************************************************************) + +(* $Id$ *) + (* Machine-independent graphics primitives *) exception Graphic_failure of string diff --git a/otherlibs/graph/image.c b/otherlibs/graph/image.c index 75b685a87..fc352c5cb 100644 --- a/otherlibs/graph/image.c +++ b/otherlibs/graph/image.c @@ -1,3 +1,16 @@ +/***********************************************************************/ +/* */ +/* Caml Special Light */ +/* */ +/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */ +/* */ +/* Copyright 1995 Institut National de Recherche en Informatique et */ +/* Automatique. Distributed only by permission. */ +/* */ +/***********************************************************************/ + +/* $Id$ */ + #include "libgraph.h" #include "image.h" #include <alloc.h> diff --git a/otherlibs/graph/image.h b/otherlibs/graph/image.h index 761cb16aa..afe3a60ca 100644 --- a/otherlibs/graph/image.h +++ b/otherlibs/graph/image.h @@ -1,3 +1,16 @@ +/***********************************************************************/ +/* */ +/* Caml Special Light */ +/* */ +/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */ +/* */ +/* Copyright 1995 Institut National de Recherche en Informatique et */ +/* Automatique. Distributed only by permission. */ +/* */ +/***********************************************************************/ + +/* $Id$ */ + struct grimage { final_fun f; /* Finalization function */ int width, height; /* Dimensions of the image */ diff --git a/otherlibs/graph/libgraph.h b/otherlibs/graph/libgraph.h index 60b9f6db9..29137cc46 100644 --- a/otherlibs/graph/libgraph.h +++ b/otherlibs/graph/libgraph.h @@ -1,3 +1,16 @@ +/***********************************************************************/ +/* */ +/* Caml Special Light */ +/* */ +/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */ +/* */ +/* Copyright 1995 Institut National de Recherche en Informatique et */ +/* Automatique. Distributed only by permission. */ +/* */ +/***********************************************************************/ + +/* $Id$ */ + #include <stdio.h> #include <X11/Xlib.h> #include <X11/Xutil.h> diff --git a/otherlibs/graph/make_img.c b/otherlibs/graph/make_img.c index 6c9570def..f655f7739 100644 --- a/otherlibs/graph/make_img.c +++ b/otherlibs/graph/make_img.c @@ -1,3 +1,16 @@ +/***********************************************************************/ +/* */ +/* Caml Special Light */ +/* */ +/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */ +/* */ +/* Copyright 1995 Institut National de Recherche en Informatique et */ +/* Automatique. Distributed only by permission. */ +/* */ +/***********************************************************************/ + +/* $Id$ */ + #include "libgraph.h" #include "image.h" #include <memory.h> diff --git a/otherlibs/graph/open.c b/otherlibs/graph/open.c index 4354033b9..3906ae29e 100644 --- a/otherlibs/graph/open.c +++ b/otherlibs/graph/open.c @@ -1,3 +1,16 @@ +/***********************************************************************/ +/* */ +/* Caml Special Light */ +/* */ +/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */ +/* */ +/* Copyright 1995 Institut National de Recherche en Informatique et */ +/* Automatique. Distributed only by permission. */ +/* */ +/***********************************************************************/ + +/* $Id$ */ + #include <fcntl.h> #include <signal.h> #include "libgraph.h" diff --git a/otherlibs/graph/point_col.c b/otherlibs/graph/point_col.c index 757cf4720..c70709c7b 100644 --- a/otherlibs/graph/point_col.c +++ b/otherlibs/graph/point_col.c @@ -1,3 +1,16 @@ +/***********************************************************************/ +/* */ +/* Caml Special Light */ +/* */ +/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */ +/* */ +/* Copyright 1995 Institut National de Recherche en Informatique et */ +/* Automatique. Distributed only by permission. */ +/* */ +/***********************************************************************/ + +/* $Id$ */ + #include "libgraph.h" value gr_point_color(vx, vy) diff --git a/otherlibs/graph/sound.c b/otherlibs/graph/sound.c index 4ca4b29a7..4d9dbfd23 100644 --- a/otherlibs/graph/sound.c +++ b/otherlibs/graph/sound.c @@ -1,3 +1,16 @@ +/***********************************************************************/ +/* */ +/* Caml Special Light */ +/* */ +/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */ +/* */ +/* Copyright 1995 Institut National de Recherche en Informatique et */ +/* Automatique. Distributed only by permission. */ +/* */ +/***********************************************************************/ + +/* $Id$ */ + #include "libgraph.h" value gr_sound(vfreq, vdur) diff --git a/otherlibs/graph/text.c b/otherlibs/graph/text.c index 22961f528..a449de964 100644 --- a/otherlibs/graph/text.c +++ b/otherlibs/graph/text.c @@ -1,3 +1,16 @@ +/***********************************************************************/ +/* */ +/* Caml Special Light */ +/* */ +/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */ +/* */ +/* Copyright 1995 Institut National de Recherche en Informatique et */ +/* Automatique. Distributed only by permission. */ +/* */ +/***********************************************************************/ + +/* $Id$ */ + #include "libgraph.h" XFontStruct * grfont = NULL; |