···1717 match c with
1818 '\n' ->
1919 incr lines; count Outside_word
2020+ | '\r' ->
2121+ (* Ignore \r to cater for CRLF vs LF checkouts *)
2222+ decr chars; count Outside_word
2023 | ' ' | '\t' ->
2124 count Outside_word
2225 | _ ->
···2932 ()
30333134let count_file name =
3232- let ic = open_in name in
3535+ let ic = open_in_bin name in
3336 count_channel ic;
3437 close_in ic
3538