Home | History | Annotate | Download | only in ss

Lines Matching refs:line_ptr

181  * ss_execute_line(sci_idx, line_ptr)
188 * line_ptr (char *)
196 int ss_execute_line(int sci_idx, char *line_ptr)
202 while (line_ptr[0] == ' ' || line_ptr[0] == '\t')
203 line_ptr++;
206 if (*line_ptr == '!') {
210 line_ptr++;
211 return (system(line_ptr) < 0) ? errno : 0;
216 argv = ss_parse(sci_idx, line_ptr, &argc);