// testclscanc2.c MR Jun 2001 // Test the output of 'clscanc2.sh'. #include #include main() { char buf[256]; while ( fscanf( stdin, " %s", buf ) == 1 ) { printf( "[%s]\n", buf ); } return 0; }