home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume26 / tulp-3.0.3 / part01 / lp.h < prev    next >
C/C++ Source or Header  |  1993-04-15  |  1KB  |  46 lines

  1. /* $Id: lp.h,v 1.5 92/11/17 20:13:52 wolf Exp $
  2.  *
  3.  *  Copyright (C) 1991,1992  Kimmo Suominen, Christophe Wolfhugel
  4.  *
  5.  *  Please read the files COPYRIGHT and AUTHORS for the extended
  6.  *  copyrights refering to this file.
  7.  *
  8.  * $Log:    lp.h,v $
  9.  * Revision 1.5  92/11/17  20:13:52  wolf
  10.  * Corrected horrible bug for IsXXX(). Proto moved from
  11.  * char * to int as in lp.c
  12.  * 
  13.  * Revision 1.4  92/06/12  07:11:28  listserv
  14.  * Initial 2.00 release
  15.  * 
  16.  * 
  17.  * External definitions from lp.c
  18.  */
  19.  
  20. extern int IsEditor(char *);
  21. extern int IsOwner(char *);
  22. extern int IsUser(char *);
  23.  
  24. extern void RewindUserList();
  25. extern void RewindCommentList();
  26. extern void RewindEditorList();
  27. extern void RewindOwnerList();
  28.  
  29. extern int AddUser(char *);
  30. extern int DelUser(char *);
  31.  
  32. extern void CloseUserList();
  33. extern int ReadUserList(char *);
  34. extern void WriteUserList();
  35.  
  36. extern char *GetUser(char *);
  37. extern char *GetComment(char *);
  38. extern char *GetEditor(char *);
  39. extern char *GetOwner(char *);
  40.  
  41. extern char *GetErrorsTo();
  42. extern char *GetReplyTo();
  43. extern char *GetReview();
  44. extern char *GetSend();
  45. extern char *GetSubscription();
  46.