home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pp / pp-6.0 / h / list_bpt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-18  |  785 b   |  38 lines

  1. /* list_bpt.h: A definition of a List structure for Body Part Types */
  2.  
  3. /*
  4.  * @(#) $Header: /xtel/pp/pp-beta/h/RCS/list_bpt.h,v 6.0 1991/12/18 20:42:44 jpo Rel $
  5.  *
  6.  * $Log: list_bpt.h,v $
  7.  * Revision 6.0  1991/12/18  20:42:44  jpo
  8.  * Release 6.0
  9.  *
  10.  *
  11.  */
  12.  
  13.  
  14.  
  15. #ifndef _H_LIST_BPT
  16. #define _H_LIST_BPT
  17.  
  18.  
  19. typedef struct list_bpt {
  20.     char                    *li_name;
  21.     struct list_bpt         *li_next;
  22. } LIST_BPT;
  23.  
  24.  
  25.  
  26. #define NULLIST_BPT             ((LIST_BPT *)0)
  27.  
  28.  
  29. extern  LIST_BPT                *list_bpt_dup();
  30. extern  LIST_BPT                *list_bpt_find();
  31. extern  LIST_BPT                *list_bpt_nfind();
  32. extern  LIST_BPT                *list_bpt_malloc();
  33. extern  LIST_BPT                *list_bpt_new();
  34. extern    void            list_bpt_add ();
  35. extern    void            list_bpt_free ();
  36.  
  37. #endif
  38.