home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume11 / rpl / part02 / stackcmd.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-03-10  |  369 b   |  25 lines

  1. /****************************************************************
  2.  
  3.     Stack commands
  4.  
  5. 0.0    hjp    89-06-14
  6.  
  7.     initial version: DROP, SWAP, CLEAR
  8.  
  9. 0.1    hjp    89-07-14
  10.  
  11.     DUP added
  12.  
  13. ****************************************************************/
  14.  
  15. #ifndef I_stackcmd
  16.  
  17.     #define I_stackcmd
  18.  
  19.     void    c_drop    (void);
  20.     void    c_swap    (void);
  21.     void    c_clear    (void);
  22.     void    c_dup    (void);
  23.  
  24. #endif
  25.