Lines Matching +defs:template +defs:c
6 /* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */
10 * Copyright (c) 1980 Regents of the University of California.
287 int i, rows, r, c, maxwidth = 0, columns;
301 for (c = 0; c < columns; c++) {
302 i = c * rows + r;
313 printf("%c",
317 if (c < columns - 1) /* last column? */
390 beep_outc(int c)
394 buf[0] = c;
659 * Return true if check items initial chars in template
664 is_prefix(tchar *check, tchar *template)
673 while (*check++ == *template++);
678 * Return true if the chars in template appear at the
682 is_suffix(tchar *check, tchar *template)
684 tchar *c, *t;
689 for (c = check; *c++; )
691 for (t = template; *t++; )
694 if (t == template)
696 if (c == check || *--t != *--c)