home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_05 / 9n05110c < prev    next >
Text File  |  1991-03-23  |  124b  |  8 lines

  1. ln_seq::ln_seq(unsigned n)
  2.     {
  3.     first = last = new listnode;
  4.     first->number = n;
  5.     first->next = 0;
  6.     }
  7.  
  8.