uxmal / reko

Reko is a binary decompiler.
https://uxmal.github.io/reko
GNU General Public License v2.0
2.1k stars 251 forks source link

Include C common escape characters when finding strings #1263

Closed gbody closed 1 year ago

gbody commented 1 year ago

When finding strings from the dialog, wasn't including strings with common C escape characters. common C escape characters are now considered valid. Eg. 0x07 - 0x0d /a 0x07, /b 0x08, /t 0x09, /n 0x0a, /v 0x0b, /f 0x0c, /r 0x0d

gbody commented 1 year ago

@uxmal ready for review.

uxmal commented 1 year ago

Looks good! I appreciate the addition of the unit test.