In the binary format are the strings terminated with anything?
Opened this issue · 2 comments
7sharp9 commented
In the binary format are the strings terminated with anything?
ChevyRay commented
they should be null-terminated. you can check the WriteString() function here: https://github.com/ChevyRay/crunch/blob/master/crunch/binary.cpp
it's kind of sloppy, though (it assumes c++'s strings are null terminated... which i don't actually know is guaranteed)