home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / uucp / Uucp.framework / unix.subproj / splnam.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-09  |  398 b   |  20 lines

  1. /* splnam.c
  2.    Get the full name of a file in the spool directory.  */
  3.  
  4. #include "uucp.h"
  5.  
  6. #include "uuconf.h"
  7. #include "sysdep.h"
  8. #include "system.h"
  9.  
  10. /* Get the real name of a spool file.  */
  11.  
  12. char *
  13. zsysdep_spool_file_name (qsys, zfile, pseq)
  14.      const struct uuconf_system *qsys;
  15.      const char *zfile;
  16.      pointer pseq;
  17. {
  18.   return zsfind_file (zfile, qsys->uuconf_zname, bsgrade (pseq));
  19. }
  20.