Lines Matching defs:linect
77 static int *linect; /* array of lengths of lines on screen (the
499 if (curr == r && c > curc && linect[r] < curc && c - curc < ccount)
603 linect[i] = -1;
623 if (linect[curr] >= curc || sp < 4) {
643 if (c > ' ' || linect[curr] >= curc) {
647 if (c == ' ' && linect[curr] == curc)
648 linect[curr]--;
650 if (linect[curr] < curc)
651 linect[curr] = curc;
666 linect[i] = -1;
673 if (linect[curr] > -1)
684 if (curc > linect[curr])
689 linect[curr] = curc - 1;
692 while (linect[curr] > c) {
695 linect[curr]--;
756 linect = (int *) calloc(LI + 1, sizeof(int));
757 if (linect == NULL) {