MCPcopy Create free account
hub / github.com/Scobalula/Greyhound / ListFile_SkipSpaces

Function ListFile_SkipSpaces

src/External/CascLib/src/common/ListFile.cpp:53–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51}
52
53static char * ListFile_SkipSpaces(PLISTFILE_CACHE pCache)
54{
55 // Skip newlines, spaces, tabs and another non-printable stuff
56 while(pCache->pPos < pCache->pEnd && pCache->pPos[0] <= 0x20)
57 pCache->pPos++;
58
59 // Remember the begin of the line
60 return pCache->pPos;
61}
62
63static void ListFile_CheckFormat(PLISTFILE_CACHE pCache)
64{

Callers 2

ListFile_GetFileDataIdFunction · 0.85
ListFile_GetNextLineFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected