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

  1. /* ultspl.c
  2.    See whether there is an Ultrix spool directory for a system.  */
  3.  
  4. #include "uucp.h"
  5.  
  6. #include "uudefs.h"
  7. #include "sysdep.h"
  8. #include "system.h"
  9.  
  10. boolean
  11. fsultrix_has_spool (zsystem)
  12.      const char *zsystem;
  13. {
  14.   char *z;
  15.   boolean fret;
  16.  
  17.   z = zsysdep_in_dir ("sys", zsystem);
  18.   fret = fsysdep_directory (z);
  19.   ubuffree (z);
  20.   return fret;
  21. }
  22.