home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / msdos / pascal / rehack / contain / stack.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1991-06-01  |  150 b   |  13 lines

  1. #include "stack.h"
  2.  
  3. containable *stack::item()
  4.  {
  5.   link_index i(*this);
  6.  
  7.   if (i == 0)
  8.     return NULL;
  9.    else
  10.     return i.item();
  11.  }
  12.  
  13.