Lines Matching refs:ptr
37 getword(ptr, size, getall)
38 register char *ptr; /* pointer to the string to be scanned */
50 while (isspace(*ptr)) {
52 ptr++;
59 *ptr != '\0' && *ptr != ':'; ptr++,(*size)++) {
61 if (isspace(*ptr))
66 if (*ptr == '\\') {
67 c = quoted(ptr,&qsize);
69 ptr += qsize;
70 } else c = *ptr;
77 while (isspace(*ptr)) {
79 ptr++;
92 quoted(ptr,qsize)
93 char *ptr;
99 rptr = ptr;
134 /* ptr so that the NULL won't be missed. The sequence */
146 (*qsize) = rptr - ptr;