<c-mode 843 B

123456789101112131415161718192021222324252627282930
  1. # -*- mode: snippet -*-
  2. # name: <c-mode
  3. # key: <c-mode
  4. # --
  5. /*
  6. **
  7. ** Copyright @ `(format-time-string "%Y")` `(user-full-name)` <jbranso@member.fsf.org>
  8. **
  9. ** This program is free software; you can redistribute it and/or modify it
  10. ** under the terms of the GNU General Public License as published by
  11. ** the Free Software Foundation; either version 3 of the License, or (at
  12. ** your option) any later version.
  13. **
  14. ** It is distributed in the hope that it will be useful, but
  15. ** WITHOUT ANY WARRANTY; without even the implied warranty of
  16. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. ** GNU General Public License for more details.
  18. **
  19. ** You should have received a copy of the GNU General Public License
  20. ** along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. */
  22. #include <stdio.h>
  23. int main ()
  24. {
  25. return 0;
  26. }