Home | History | Annotate | Download | only in ss

Lines Matching refs:line_ptr

189  * ss_execute_line(sci_idx, line_ptr)
196 * line_ptr (char *)
204 int ss_execute_line (sci_idx, line_ptr)
206 char *line_ptr;
212 while (line_ptr[0] == ' ' || line_ptr[0] == '\t')
213 line_ptr++;
216 if (*line_ptr == '!') {
220 line_ptr++;
221 return (system(line_ptr) < 0) ? errno : 0;
226 argv = ss_parse(sci_idx, line_ptr, &argc);