Simple CLI tool to count the number of unique lines in source files. It can be used as a sort of heuristic for how DRY your code is.
I wanted to make this after I noticed I do quite a bit of copy pasting of code, this may help to see if it's gotten out of hand (though of course it's not that smart).
Part of the challenge was to make something in C, and try to make it efficient and small, with very few dependencies.
I learned a lot about UTF in this project and how Windows sucks at it 😉