Handle null-delimited input paths
[dups.git] / input_delim.mll
CommitLineData
6b873e5a
SK
1rule by_null = parse
2| eof {None}
3| [^ '\000']+ as line {Some line}
4| '\000'+ {by_null lexbuf}
This page took 0.018669 seconds and 4 git commands to generate.