home *** CD-ROM | disk | FTP | other *** search
/ vis-ftp.cs.umass.edu / vis-ftp.cs.umass.edu.tar / vis-ftp.cs.umass.edu / pub / Software / ASCENDER / ascender.tar.Z / ascender.tar / Triangulate / include / fileopen.s < prev    next >
Text File  |  1995-04-13  |  606b  |  33 lines

  1. #ifndef incl_fileopen_s
  2. #define incl_fileopen_s
  3. #include "cvar.h"
  4.  
  5.  
  6. /* */
  7. typedef struct
  8.    {
  9.    char *fname;
  10.    char *expanded_name;
  11.    } fn_record;
  12.  
  13. /* */
  14.  
  15. FUNCTION_DECL (static int fn_find, (DATA aname, DATA arec));
  16.  
  17. FUNCTION_DECL ( static int fn_cmp, (DATA arec1, DATA arec2));
  18.  
  19. FUNCTION_DECL ( char *findfile, (
  20.    char *filename        /* The name of the file to find */
  21.    ));
  22.  
  23. FUNCTION_DECL ( FILE *openinput, (
  24.    char *newfilename,
  25.    char **fullname    /* Returned full name of file with directory prefix */
  26.    ));
  27.  
  28. FUNCTION_DECL ( int getdirlist, (
  29.         int *argc,
  30.         char *argv[]));
  31.  
  32. #endif
  33.