#include #include extern void decompress (void *in, void *out, int w, int h, int l); main () { char *out = malloc (3 * 1152 * 864); char *in = malloc (400000); int fd; read (0, in, 400000); bzero (out, 3 * 1152 * 864); decompress (in, out, 1024, 768, 7); write (1, out, 1024 * 768); return 0; }