home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume25 / finger / part01 / daemon.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-03  |  656 b   |  29 lines

  1. /*
  2.  * daemon.h -- Different things that can parent a shell -- January 1988
  3.  *
  4.  * Copyright (C) 1986, 1990  Philip L. Budne
  5.  *
  6.  * This file is part of "Phil's Finger Program".
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 1, or (at your option)
  11.  * any later version.
  12.  *
  13.  */
  14.  
  15. # define DAEMON_RCSID "$Id: daemon.h,v 3.0 90/07/06 13:10:31 budd Rel $"
  16.  
  17. /*
  18.  * see also daemon.c, getcommand.c, luser.h and getttyloc.c
  19.  */
  20.  
  21. struct daemon {
  22.     char
  23.     *d_cmd,
  24.     *d_short,
  25.     *d_long;
  26. };
  27.  
  28. extern struct daemon daemons[];
  29.