home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / testzp13.zip / which2.h < prev   
Text File  |  1997-02-28  |  239b  |  9 lines

  1. #define FALSE 0
  2. #define TRUE  1
  3.  
  4. #define IS_DELIM(c) ((c) == '\\' || (c) == '/' || (c) == ':')
  5.  
  6. static int try_dir (const char *dir, const char *name);
  7. static int find_prog (const char *name, const char *path);
  8. int which (char *filename);
  9.