Lines Matching defs:pszEnd
229 char *pszEnd = strchr(psz, '\n');
230 if (!pszEnd)
231 pszEnd = strchr(psz, '\r');
232 if (!pszEnd)
233 pszNext = pszEnd = strchr(psz, '\0');
235 pszNext = pszEnd + 1;
240 *pszEnd = '\0';
241 while (pszEnd > psz && RT_C_IS_SPACE(pszEnd[-1]))
242 *--pszEnd = '\0';
246 rc = scriptCommand(pVM, psz, pszEnd - psz);