Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 132 of file hpp.c.
Referenced by ParseInputFile().
{ /* Walk to the end of the line */ while (*pszLine != 13 && *pszLine != 10 && *pszLine != 0) pszLine++; /* Skip one CR/LF */ if (pszLine[0] == 13 && pszLine[1] == 10) pszLine += 2; else if (pszLine[0] == 13 || pszLine[0] == 10) pszLine++; if (*pszLine == 0) { return 0; } return pszLine; }