home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / uucp-1.04 / unix / splnam.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-13  |  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.