home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume26 / feedpipe / part01 / feedpipe.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-14  |  351 b   |  19 lines

  1. /*
  2. feedpipe.h
  3. Written by D'Arcy J.M. Cain
  4.  
  5. header file for feedpipe
  6. */
  7.  
  8. typedef struct {
  9.     char    *name;        /* name of the pipe */
  10.     char    *cmd;        /* command to feed to pipe */
  11.     char    *owner;        /* file owner */
  12.     char    *group;        /* file group */
  13.     int        mode;        /* file mode */
  14. } FP_CFG;
  15.  
  16. extern FP_CFG    *fp_cfg;
  17. extern char        *progname;
  18. extern int        readcfg(FILE *fp);
  19.