Advertisement
Hikigaya8man

git_stack.h

May 24th, 2017
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. diff --git a/stack.h b/stack.h
  2. index 879944b..30d90ef 100644
  3. --- a/stack.h
  4. +++ b/stack.h
  5. @@ -1,3 +1,21 @@
  6. +/*
  7. + * "Stack" is very simple implementation of stack data structure
  8. + * Copyright (C) 2015 Robin Obůrka
  9. + *
  10. + * This program is free software: you can redistribute it and/or modify
  11. + * it under the terms of the GNU General Public License as published by
  12. + * the Free Software Foundation, either version 3 of the License, or
  13. + * (at your option) any later version.
  14. + *
  15. + * This program is distributed in the hope that it will be useful,
  16. + * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. + * GNU General Public License for more details.
  19. + *
  20. + * You should have received a copy of the GNU General Public License
  21. + * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. + */
  23. +
  24. #ifndef STACK_H
  25. #define STACK_H
  26. #include <stdbool.h>
  27. @@ -13,5 +31,6 @@ void stack_destroy(struct stack_ctx *ctx);
  28. void stack_push(struct stack_ctx *ctx, int num);
  29. int stack_pop(struct stack_ctx *ctx);
  30. bool stack_is_empty(struct stack_ctx *ctx);
  31. +bool stack_has_items(struct stack_ctx *ctx);
  32.  
  33. #endif //STACK_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement