| 202 | } |
| 203 | |
| 204 | static int peIsPrintable( int byte, PE_STRING_ENCODING encoding ) |
| 205 | { |
| 206 | return encoding == Ascii ? ( byte >= -1 && byte <= 255 && isprint(byte) ) : iswprint(byte); |
| 207 | } |
| 208 | |
| 209 | template<typename T> void peExtractStrings( PE *pe, uint32_t dwMinSize, PE_STRING_ENCODING encoding, PE_STRING_DUP dup, ht_t *LookupTable ) |
| 210 | { |