File: compr.c

package info (click to toggle)
acm 4.7-6
  • links: PTS
  • area: main
  • in suites: hamm, potato, slink
  • size: 4,764 kB
  • ctags: 1,625
  • sloc: ansic: 16,776; makefile: 353; sh: 26
file content (12 lines) | stat: -rw-r--r-- 174 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
#include <Vlib.h>
#include <stdio.h>

main()
{
	VObject	*obj1, *obj2;

	obj1 = VReadObject(stdin);
	obj2 = VCompressObject (obj1);
	VWriteObject (stdout, obj2);
	exit (0);
}