/*--------------------------------------------------------------------------*\
 * Simple program to test cf_vms functions against [.RCS] directory.
 *
 * CC/NOOPT GLOP,CF_VMS
 * LINK GLOP,CF_VMS
 *
\*--------------------------------------------------------------------------*/

#include <stdio.h>

#define FILE_NAME_LENGTH	(int) 100
#define RCS_WILDCARD_STRING	"*.*_V"

main( int argc, char *argv[] )
{
   FILE          *fp;
   char          *fstr;
   char           path_name[FILE_NAME_LENGTH];

   strcat( path_name, argv[1] );

   c_next_file_init( path_name );

   fstr = c_next_file();

   while( fstr != NULL) {
      printf( "File: %s\n", fstr );
      fstr = c_next_file();
   }

}
