/* usepbmlib.c
 * Call the pbmplus routines to convert a file to TIFF format, then convert
 * the result to HDF.
 * 
 * Peter Webb, Summer 1990
 */

/* Standard include files */

#include <stdio.h>

/* Package include files */

#include "reformat.h"
#include "types.h"
#include "extern.h"
#include "error.h"

/* Determine the type of the input file, call the appropriate pbmplus routine.
 */

ErrorCode UsePbmLib(theName, theInfo)
     char *theName;
     FileInfo theInfo;
{
  

  return(AllOk);
}

