File: date.mli

package info (click to toggle)
geneweb 4.06-2woody1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 4,320 kB
  • ctags: 2,520
  • sloc: ml: 41,969; sh: 833; makefile: 480; perl: 8
file content (22 lines) | stat: -rw-r--r-- 778 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(* $Id: date.mli,v 4.0 2001/03/16 19:34:34 ddr Exp $ *)
(* Copyright (c) 2001 INRIA *)

open Def;
open Config;

value code_dmy : config -> dmy -> string;
value string_of_ondate : config -> date -> string;
value string_of_date : config -> date -> string;
value print_age : config -> dmy -> unit;
value year_text : dmy -> string;
value short_dates_text : config -> base -> person -> string;
value short_marriage_date_text :
  config -> base -> family -> person -> person -> string;
value print_dates : config -> base -> person -> unit;
value print_calendar : config -> base -> unit;
value get_birth_death_date : person -> (option date * option date * bool);

(* Deprecated *)
value afficher_dates_courtes : config -> base -> person -> unit;
value display_year : dmy -> unit;
(**)