draw.c
changeset 487 be4f90c03582
parent 486 8d564b9e3cd4
child 495 3a812750f983
equal deleted inserted replaced
486:8d564b9e3cd4 487:be4f90c03582
    78 }
    78 }
    79 
    79 
    80 /* extern */
    80 /* extern */
    81 
    81 
    82 void
    82 void
    83 drawall() {
    83 drawall(void) {
    84 	Client *c;
    84 	Client *c;
    85 
    85 
    86 	for(c = clients; c; c = getnext(c->next))
    86 	for(c = clients; c; c = getnext(c->next))
    87 		drawtitle(c);
    87 		drawtitle(c);
    88 	drawstatus();
    88 	drawstatus();
    89 }
    89 }
    90 
    90 
    91 void
    91 void
    92 drawstatus() {
    92 drawstatus(void) {
    93 	int i, x;
    93 	int i, x;
    94 
    94 
    95 	dc.x = dc.y = 0;
    95 	dc.x = dc.y = 0;
    96 
    96 
    97 	for(i = 0; i < ntags; i++) {
    97 	for(i = 0; i < ntags; i++) {