home *** CD-ROM | disk | FTP | other *** search
/ vsiftp.vmssoftware.com / VSIPUBLIC@vsiftp.vmssoftware.com.tar / FREEWARE / FREEWARE40.ZIP / flistfrontend / src / textlink.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-06  |  513 b   |  24 lines

  1. /* $Id: textlink.h,v 1.4 1995/06/06 00:53:22 tom Exp $
  2.  *
  3.  * Title:    textlink.h
  4.  * Author:    Thomas E. Dickey
  5.  * Created:    06 Dec 1984
  6.  * Last update:    04 Jul 1985, added 'refs' mask
  7.  *        06 Dec 1984
  8.  *
  9.  *    Define a structure of linked-lists with text.
  10.  */
  11.  
  12. #ifndef    TEXTLINK_H
  13. #define    TEXTLINK_H
  14.  
  15. #define    TEXTLINK    struct _textlink
  16.  
  17. TEXTLINK {
  18.     TEXTLINK *    next;        /* => next link in list        */
  19.     unsigned char    refs;        /* bitmask to track reference    */
  20.         char    text[1];    /* string, with trailing null    */
  21.     };
  22.  
  23. #endif/*TEXTLINK_H*/
  24.