Advertisement
Hikigaya8man

git_main.c

May 24th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. diff --git a/main.c b/main.c
  2. index e32ca93..e13feca 100644
  3. --- a/main.c
  4. +++ b/main.c
  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. #include <stdio.h>
  25. #include <stdlib.h>
  26. #include <time.h>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement