home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / MISC / MN325SRC.ZIP / makenl-3.2.5 / src / osgenff.c < prev    next >
C/C++ Source or Header  |  2005-02-06  |  354b  |  17 lines

  1. /* $Id: osgenff.c,v 1.2 2004/07/11 09:29:14 ozzmosis Exp $ */
  2.  
  3. char *os_findfile(struct _filefind *pff, const char *path,
  4.                   const char *mask)
  5. {
  6.     char *p;
  7.  
  8.     p = os_findfirst(pff, path, mask);
  9.     if (p)
  10.     {
  11.         strcpy(pff->path, p);
  12.         os_findclose(pff);
  13.         return pff->path;
  14.     }
  15.     return NULL;
  16. }
  17.