| 51 | } |
| 52 | |
| 53 | static 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 | |
| 63 | static void ListFile_CheckFormat(PLISTFILE_CACHE pCache) |
| 64 | { |
no outgoing calls
no test coverage detected