Home | History | Annotate | Download | only in libcurses

Lines Matching refs:spc

733 	size_t spc, len, width, x;
737 spc = screen->slk_label_len;
756 if (width + w > spc)
766 if (len > spc)
767 len = spc;
776 x = (spc - width) / 2;
777 if (x + width > spc)
781 x = spc - width;
791 spc -= x;
796 spc -= width;
798 if (spc != 0) {
799 memset(p, ' ', spc);
800 p += spc;