Advertisement
eric11144

container.h

Jan 8th, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #ifndef _LIB_PUSH_H_
  2. #define _LIB_PUSH_H_
  3.  
  4. #include <vector>
  5.  
  6. typedef struct node
  7. {
  8. std::vector<char> container;
  9. } container_t;
  10.  
  11. extern void
  12. init(container_t *);
  13.  
  14. extern char
  15. container_all_delete(container_t *);
  16.  
  17. extern void
  18. container_insert(container_t *,
  19. char);
  20. extern void
  21. container_printlist(container_t *);
  22.  
  23. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement