Trailing-Edge
-
PDP-10 Archives
-
SRI_NIC_PERM_SRC_1_19910112
-
5-galaxy/hpf.c
There are no other files named hpf.c in the archive.
10-May-89 14:36:24-PDT,845;000000000001
Return-Path: <[email protected]>
Received: from fernwood.MPK.CA.US by SRI-NIC.ARPA with TCP; Wed, 10 May 89 14:36:08 PDT
Received: by fernwood.MPK.CA.US at Wed, 10 May 89 14:35:39 -0700.
(5.61a+/IDA-1.2.8-21) id AA14497 for [email protected]
Date: Wed, 10 May 89 14:35:39 -0700
From: Geoff Goodfellow <[email protected]>
Message-Id: <[email protected]>
To: [email protected]
/*
laserjet iid filter
*/
#include <stdio.h>
main()
{
int c;
/* reset */
/* left column pos 5 */
/* change pitch */
/* wrap lines */
/* convert lf to crlf */
/* select lower tray */
puts("\033E\033&a5L\033&k10.91H\033&s0C\033&k2G\033&l4H",stdout);
fflush(stdout);
while ((c = getchar()) != EOF) putchar(c);
puts("\033&l0H",stdout); /* eject page */
fflush(stdout);
}