home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c500 / 1.ddi / SRC386.WPK / MEMOS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-05-28  |  394 b   |  16 lines

  1. /* This structure is for an individual line in a memo.
  2.  */
  3. typedef struct text_line {
  4.     struct text_line *  next;
  5.     char                text[1];
  6. } TEXT_LINE;
  7.  
  8. /* This structure is the head of an individual memo.
  9.  */
  10. typedef struct memo_el {
  11.     struct memo_el *    prev;
  12.     struct memo_el *    next;
  13.     TEXT_LINE *         text;
  14.     char                date[9];
  15. } MEMO_EL;
  16.