Home | History | Annotate | Download | only in dist

Lines Matching refs:loc

75     const char *loc;
78 loc = strchr(input, ':');
79 if (loc == NULL) {
84 while (loc != NULL && bufsize > loc - tmp + 2) {
85 memcpy(output, tmp, loc - tmp);
86 output += loc - tmp;
87 bufsize -= loc - tmp + 2;
88 tmp = loc + 1;
93 loc = strchr(tmp, ':');