diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-09-29 14:40:02 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-09-29 14:40:02 +0000 |
commit | 9baac87147e46384da1f3a18ebf1363f21638ee9 (patch) | |
tree | fee424984969e93275502324f90774d0bc06922c /perl_checker.src/common.mli | |
parent | cc10af8042789097c52948fa329be7c432a4befd (diff) | |
download | perl-MDK-Common-9baac87147e46384da1f3a18ebf1363f21638ee9.tar perl-MDK-Common-9baac87147e46384da1f3a18ebf1363f21638ee9.tar.gz perl-MDK-Common-9baac87147e46384da1f3a18ebf1363f21638ee9.tar.bz2 perl-MDK-Common-9baac87147e46384da1f3a18ebf1363f21638ee9.tar.xz perl-MDK-Common-9baac87147e46384da1f3a18ebf1363f21638ee9.zip |
re-organize to handle cleanly multi packages per file
=> fixes cache coherency
Diffstat (limited to 'perl_checker.src/common.mli')
-rw-r--r-- | perl_checker.src/common.mli | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/perl_checker.src/common.mli b/perl_checker.src/common.mli index d766b86..60f985e 100644 --- a/perl_checker.src/common.mli +++ b/perl_checker.src/common.mli @@ -205,14 +205,19 @@ val string_forall_with : (char -> bool) -> int -> string -> bool val starts_with_non_lowercase : string -> bool val fold_lines : ('a -> string -> 'a) -> 'a -> in_channel -> 'a val readlines : in_channel -> string list -val updir : string -> int -> string val split_at : char -> string -> string list val split_at2 : char -> char -> string -> string list val words : string -> string list val to_CamelCase : string -> string option +val concat_symlink : string -> string -> string +val expand_symlinks : string -> string +val file_to_absolute_file : string -> string +val mtime : string -> int +val updir : string -> int -> string val string_of_ref : 'a ref -> string val print_endline_flush_quiet : bool ref val print_endline_flush : string -> unit +val print_endline_flush_always : string -> unit val is_int : float -> bool val compare_lists : ('a -> 'b -> int) -> 'a list -> 'b list -> int val compare_best : int -> int -> int |