File: treset.c

package info (click to toggle)
splitvt 1.6.5-0potato1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 332 kB
  • ctags: 399
  • sloc: ansic: 4,684; sh: 78; makefile: 55; perl: 15
file content (10 lines) | stat: -rw-r--r-- 172 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
/* A simple program to reset the scrolling regions of a vt100 terminal */

#include	<stdio.h>

main()
{
	printf("\033[m\033;r\033[;H\033[2J");
	fflush(stdout);
	exit(0);
}