vsm2

exeprimental virtual stack machine for *nix
Log | Files | Refs

cell.h (174B)


      1 /* concerning memory units */
      2 
      3 typedef struct Cell Cell;
      4 
      5 struct Cell {
      6 	long n;
      7 	char *p;
      8 };
      9 
     10 Cell * createcell(int, void *);
     11 Cell * celldup(Cell *);
     12 void freecell(Cell *);