Guest User

Untitled

a guest
Jul 16th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. typedef struct pilha Pilha;
  2. typedef struct no No;
  3. Pilha* cria (void);
  4. No* ins_ini (No* l , char v);
  5. No* ret_ini (No* l);
  6. void push (Pilha* p, char v);
  7. int vazia (Pilha* p);
  8. char pop (Pilha* p);
  9. void libera (Pilha* p);
  10. int verifica(Pilha* p);
  11. void imprimir(int *v, int n);
Add Comment
Please, Sign In to add comment