MCPcopy Create free account
hub / github.com/ZDoom/Raze / isText

Method isText

source/common/engine/sc_man.cpp:346–354  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

344//==========================================================================
345
346bool FScanner::isText()
347{
348 for(unsigned int i=0;i<ScriptBuffer.Len();i++)
349 {
350 int c = ScriptBuffer[i];
351 if (c < ' ' && c != '\n' && c != '\r' && c != '\t') return false;
352 }
353 return true;
354}
355
356//==========================================================================
357//

Callers 2

LoadLanguageMethod · 0.80
isTextFunction · 0.80

Calls 1

LenMethod · 0.80

Tested by

no test coverage detected