Trailing-Edge
-
PDP-10 Archives
-
SRI_NIC_PERM_FS_1_19910112
-
kcc-6/lib/test/techo.c
There are 2 other files named techo.c in the archive. Click here to see a list.
#include <stdio.h>
main(argc,argv)
char *argv[];
{ register int i;
register char *cp;
for(i = 0; i < argc; ++i)
printf(" \"%s\"", argv[i]);
}