Home | History | Annotate | Download | only in uniq

Lines Matching defs:thisline

71 	char *prevline, *thisline, *p;
139 if ((thisline = malloc(thislinesize + 1)) == NULL)
144 if ((thisline = realloc(thisline, psize + 1)) == NULL)
149 (void)memcpy(thisline, p, psize);
150 thisline[psize] = '\0';
154 thisp = skip(thisline, &thislen);
156 thisp = thisline;
166 prevline = thisline;
167 thisline = t;
179 free(thisline);