Home | History | Annotate | Download | only in slirp

Lines Matching refs:bptr

260 	char *bptr;
341 bptr = strdup(ex); /* No need to free() this */
346 argv[i++] = bptr;
350 curarg = bptr;
351 while (*bptr != ' ' && *bptr != (char)0)
352 bptr++;
353 c = *bptr;
354 *bptr++ = (char)0;
412 char *bptr;
414 bptr = (char *)malloc(strlen(str)+1);
415 strcpy(bptr, str);
417 return bptr;