summaryrefslogtreecommitdiffstats
path: root/perl_checker.src/common.mli
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-10-01 12:01:00 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-10-01 12:01:00 +0000
commit19ec25715ed9df4a57e553b255c736bcc9cd40ac (patch)
treef42440d3dad3440676d7158c41d234cac01a24a6 /perl_checker.src/common.mli
parentdc9773c0e1ae4730e0b426239b432dff93e226be (diff)
downloadperl_checker-19ec25715ed9df4a57e553b255c736bcc9cd40ac.tar
perl_checker-19ec25715ed9df4a57e553b255c736bcc9cd40ac.tar.gz
perl_checker-19ec25715ed9df4a57e553b255c736bcc9cd40ac.tar.bz2
perl_checker-19ec25715ed9df4a57e553b255c736bcc9cd40ac.tar.xz
perl_checker-19ec25715ed9df4a57e553b255c736bcc9cd40ac.zip
perfect warning for suggesting qq(...) instead of "..."
Diffstat (limited to 'perl_checker.src/common.mli')
-rw-r--r--perl_checker.src/common.mli1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl_checker.src/common.mli b/perl_checker.src/common.mli
index 48ff55a..0545d9f 100644
--- a/perl_checker.src/common.mli
+++ b/perl_checker.src/common.mli
@@ -204,6 +204,7 @@ val char_is_alphanumerical_ : char -> bool
val char_is_alpha : char -> bool
val char_is_number : char -> bool
val count_chars_in_string : string -> char -> int
+val string_fold_left : ('a -> char -> 'a) -> 'a -> string -> 'a
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