Home | History | Annotate | Download | only in src

Lines Matching refs:script

311 MakeArgs(char *script, char **pvect, int maxargs, int flags)
316 while (*script) {
317 script += strspn(script, " \t");
318 if (*script == '#' && !(flags & PARSE_NOHASH)) {
319 *script = '\0';
322 if (*script) {
325 *pvect++ = script;
327 script = findblank(script, flags);
328 if (script == NULL)
330 else if (!(flags & PARSE_NOHASH) && *script == '#')
331 *script = '\0';
332 else if (*script)
333 *script++ = '\0';