MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / peIsPrintable

Function peIsPrintable

emmy_hook/src/libpe/libpe.cpp:204–207  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

peExtractStringsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected