PC
char PC; /* padding character */
PC = *tbuf;
PC = 0;
PC = pcstr ? *pcstr : 0;
extern char PC, *BC, *UP; /* tgoto requires globals: ugh! */
extern NCURSES_EXPORT_VAR(char) PC;
putchr(*PC);
*ptr++ = hexchars[PC >> 4];
*ptr++ = hexchars[PC & 0xf];
char PC;
PC = (PCptr = tgetstr("pc", &bufptr)) ? *PCptr : 0;
PC = buf[0];
char PC, *BC, *UP;
PC = gen_PC ? *gen_PC->ts_str : 0;