Home | History | Annotate | Download | only in posix

Lines Matching defs:cc

495           int cc = -1;
497 if (new[off] == '&') cc = 0;
498 else if (new[off] == '\\') cc = new[++off] - '0';
499 if (cc < 0 || cc > 9) {
503 newlen += match[cc].rm_eo-match[cc].rm_so;
516 int cc = 0, ll;
519 cc = new[++off] - '0';
520 if (cc<0 || cc>9) {
525 } else if (match[cc].rm_so == -1) error_exit("no s//\\%d/", cc);
532 ll = match[cc].rm_eo-match[cc].rm_so;
533 memcpy(rswap+mlen, rline+match[cc].rm_so, ll);
887 char *cc;
897 for (cc = line; *cc; cc++) if (*cc == '\\' && cc[1] == ';') break;
898 delim = *cc;
899 *cc = 0;
901 *cc = delim;
904 command = xrealloc(command, command->w+(cc-line)+6);
914 line = cc;