X-Git-Url: http://git.nguyen.vg/gitweb/?p=tatoo.git;a=blobdiff_plain;f=src%2Fnode_list.ml;fp=src%2Fnode_list.ml;h=2219d5bc88fcb04e00ea273ff9a4df01aa178865;hp=0000000000000000000000000000000000000000;hb=33cc91c072d0c3ee3f17911f6484a24f55a3408b;hpb=a089738aa464521c0ae79944eb00fc147cc37ac9 diff --git a/src/node_list.ml b/src/node_list.ml new file mode 100644 index 0000000..2219d5b --- /dev/null +++ b/src/node_list.ml @@ -0,0 +1,25 @@ +(***********************************************************************) +(* *) +(* TAToo *) +(* *) +(* Kim Nguyen, LRI UMR8623 *) +(* Université Paris-Sud & CNRS *) +(* *) +(* Copyright 2010-2013 Université Paris-Sud and Centre National de la *) +(* Recherche Scientifique. All rights reserved. This file is *) +(* distributed under the terms of the GNU Lesser General Public *) +(* License, with the special exception on linking described in file *) +(* ../LICENSE. *) +(* *) +(***********************************************************************) + +module type S = + sig + type node + type t + + val create : unit -> t + val add : node -> t -> t + val iter : (node -> unit) -> t -> unit + val length : t -> int + end