// testclscanc2.c   MR Jun 2001
// Test the output of 'clscanc2.sh'.


#include <stdio.h>
#include <string.h>

main()
	{
	char buf[256];

	while ( fscanf( stdin, " %s", buf ) == 1 )
		{
		printf( "[%s]\n", buf );
		}

	return 0;
	}
