view paper/src/stack.h @ 109:f6d00a13f923

Add ()
author atton
date Mon, 13 Feb 2017 14:11:30 +0900
parents c0693ad89f04
children
line wrap: on
line source

struct SingleLinkedStack {
    struct Element* top;
} SingleLinkedStack;
struct Element {
    union Data* data;
    struct Element* next;
} Element;