Skip 0-sized files in the shell version
[dups.git] / input_delim.mll
1 rule by_null = parse
2 | eof {None}
3 | [^ '\000']+ as line {Some line}
4 | '\000'+ {by_null lexbuf}
This page took 0.045482 seconds and 4 git commands to generate.