This is constant.c in view mode; [Download] [Up]
#include <stdio.h>
main(argc,argv)
int argc; char *argv[];
{
int N=0;
char *value="0";
if( argc>1 )
N = atoi( argv[1] );
if( argc>2 )
value = argv[2];
while( N-->0 )
printf( "%s\n", value );
fflush( stdout );
}
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.