Guest User

Untitled

a guest
Jul 15th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.07 KB | None | 0 0
  1. char isEmpty(stack_t *s) {
  2.      if(s->pos == 0) return 1;
  3.      return 0;
  4. }
Add Comment
Please, Sign In to add comment