Skip to content
Snippets Groups Projects
findfile.h 760 B
Newer Older
  • Learn to ignore specific revisions
  • teuben's avatar
    teuben committed
    #ifndef _FINDFILE_H
    #define _FINDFILE_H
    
    /*
     * Some file and command utilities for partiview, adapted from geomview.
     * Stuart Levy, slevy@ncsa.uiuc.edu
     * National Center for Supercomputing Applications,
     * University of Illinois 2001.
    
     * This file is part of partiview, released under the
     * Illinois Open Source License; see the file LICENSE.partiview for details.
    
    teuben's avatar
    teuben committed
    
    
    slevy's avatar
    slevy committed
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    
    teuben's avatar
    teuben committed
    extern char **getfiledirs(void);
    
    slevy's avatar
    slevy committed
    extern char *findfile( char *superfile, char *fname );
    
    teuben's avatar
    teuben committed
    extern void filedirs( char **dirs );
    
    
    slevy's avatar
    slevy committed
    extern char *envexpand(char *str);
    
    
    slevy's avatar
    slevy committed
    extern int tokenize( char *str, char *tbuf, int maxargs, char **argv, char **commentp);
    
    extern char *rejoinargs( int arg0, int argc, char **argv );
    
    
    
    slevy's avatar
    slevy committed
    #ifdef __cplusplus
    }
    #endif
    
    
    teuben's avatar
    teuben committed
    #endif