Guest User

Untitled

a guest
May 26th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. /* Types and constants */
  2.  
  3. typedef int nat;
  4.  
  5. typedef char * element;
  6.  
  7. typedef struct {
  8. element contents[max_height];
  9. nat height;
  10. } stack_record;
  11.  
  12. typedef stack_record * stack;
Add Comment
Please, Sign In to add comment