File: fullscreen.c

package info (click to toggle)
dvtm 0.4.1-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 160 kB
  • ctags: 361
  • sloc: ansic: 2,116; makefile: 99; sh: 12
file content (6 lines) | stat: -rw-r--r-- 105 bytes parent folder | download
1
2
3
4
5
6
void
fullscreen(void) {
	Client *c;
	for(c = clients; c; c = c->next)
		resize(c, wax, way, waw, wah);
}