[ create a new paste ] login | about

Link: http://codepad.org/AotiUB6K    [ raw code | fork ]

C, pasted on Jul 2:
1
2
3
4
5
6
7
8
9
10
11
12
struct _SLStackNode {
  int data;
  struct _SLStackNode *next;
};


int astack_top ();
void astack_push (int data);
int astack_pop ();
void astack_destroy ();
void astack_print ();
void astack_reverse ();


Create a new paste based on this one


Comments: