Home | History | Annotate | Download | only in src

Lines Matching refs:p_start

229     char *p_start = str;
234 //p_needle = strchr(p_start, ';');
235 p_needle = strchr(p_start, ' ');
236 if (p_needle < p_start) break;
238 strncpy(buf, p_start, (p_needle-p_start));
241 p_start = ++p_needle;
243 } while (*p_start != 0);