/* This program, hacked by Simson L. Garfinkel, prints to stdout the character for every ASCII value on the command line */
/*
 *	$Source: /mit/sipbsrc/src/RCS/char.c,v $
 *	$Author: eichin $
 *	$Locker:  $
 *	$Log:	char.c,v $
 * Revision 1.2  91/01/07  02:23:19  eichin
 * 1) eliminated sscanf, to avoid pulling in stdio (and float library)
 * 2) eliminated both local variables
 * 3) returned a valid exit status
 * 
 */
#ifndef lint
static char *rcsid_char_c = "$Header: /mit/sipbsrc/src/RCS/char.c,v 1.2 91/01/07 02:23:19 eichin Exp $";
#endif	lint

int main(argc,argv)
     char **argv;
{
  while(--argc) {
    putchar(atoi(*++argv));
  }
  return 0;
}
