Symbol: BC
distrib/special/more/curses.h
58
extern char *AL, *BC, *BT, *CD, *CE, *CL, *CM, *CR, *CS, *DC, *DL,
distrib/special/more/tgoto.c
172
(BC ? BC : "\b") : UP,
distrib/special/more/tgoto.c
41
char *BC;
games/hack/hack.termcap.c
101
if(!(BC = tgetstr("le", &tbufptr))) {
games/hack/hack.termcap.c
104
BC = tbufptr;
games/hack/hack.termcap.c
106
*BC = '\b';
games/hack/hack.termcap.c
223
xputs(BC);
games/hack/hack.termcap.c
301
xputs(BC);
games/hack/hack.termcap.c
71
static char *HO, *CL, *CE, *UP, *CM, *ND, *XD, *BC, *SO, *SE, *TI, *TE;
games/tetris/screen.c
105
{"le", &BC}, /* move cursor left one space */
games/tetris/screen.c
191
BC = "\b";
games/tetris/screen.c
192
else if (BC == NULL && bcstr != NULL)
games/tetris/screen.c
193
BC = bcstr;
games/tetris/screen.c
196
if (CMstr == NULL || UP == NULL || BC == NULL)
games/tetris/screen.c
68
extern char PC, *BC, *UP; /* tgoto requires globals: ugh! */
games/tetris/shapes.c
60
/* 2*/ { 9, 11, { ML, MR, BC } },
games/tetris/shapes.c
67
/* 9*/ { 10, 2, { TC, MR, BC } },
games/tetris/shapes.c
69
/*11*/ { 2, 10, { TC, ML, BC } },
games/tetris/shapes.c
70
/*12*/ { 13, 4, { TC, BC, BR } },
games/tetris/shapes.c
72
/*14*/ { 4, 13, { TL, TC, BC } },
games/tetris/shapes.c
73
/*15*/ { 16, 5, { TR, TC, BC } },
games/tetris/shapes.c
75
/*17*/ { 5, 16, { TC, BC, BL } },
games/tetris/shapes.c
76
/*18*/ { 6, 6, { TC, BC, 2*B_COLS } }/* sticks out */
lib/libcurses/termcap.h
59
extern NCURSES_EXPORT_VAR(char *) BC;
lib/libcurses/tinfo/lib_termcap.c
167
BC = 0;
lib/libcurses/tinfo/lib_termcap.c
182
BC = backspace_if_not_bs;
lib/libcurses/tinfo/lib_termcap.c
57
NCURSES_EXPORT_VAR(char *) BC = 0;
lib/libcurses/tinfo/lib_tgoto.c
127
if (BC != 0) {
lib/libcurses/tinfo/lib_tgoto.c
188
_nc_STRCPY(result + used, BC, length - used);
lib/libcurses/tinfo/lib_tgoto.c
189
used += strlen(BC);
lib/libcurses/tinfo/lib_tgoto.c
84
if (BC)
lib/libcurses/tinfo/lib_tgoto.c
85
need += strlen(BC);