X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=csv.ml;h=ee0623ef7ab9dbff4b8efe19e976aa29868e8c44;hb=d2ed4971af94812bb8df88448a91db8d917f2de2;hp=b76f4b30ae8b23466f4035d9868e0e00a724982f;hpb=e808ed9e7dae3273ba3614ba8cef960778f21b80;p=ocaml-csv.git diff --git a/csv.ml b/csv.ml index b76f4b3..ee0623e 100644 --- a/csv.ml +++ b/csv.ml @@ -1,6 +1,6 @@ (* csv.ml - comma separated values parser * - * $Id: csv.ml,v 1.12 2006-10-18 14:56:12 rich Exp $ + * $Id: csv.ml,v 1.13 2006-11-24 09:43:15 rich Exp $ *) (* The format of CSV files: @@ -42,6 +42,11 @@ open Printf +(* Uncomment the next line to enable Extlib's List function. These + * avoid stack overflows on really huge CSV files. + *) +(*open ExtList*) + type t = string list list exception Bad_CSV_file of string