Ver código fonte

Add current year to "Copyright" comments

master
Svend Sorensen 10 anos atrás
pai
commit
25d4acc24b
22 arquivos alterados com 22 adições e 22 exclusões
  1. +1
    -1
      README
  2. +1
    -1
      src/lib/cd.c
  3. +1
    -1
      src/lib/cd.h
  4. +1
    -1
      src/lib/cdtext.c
  5. +1
    -1
      src/lib/cdtext.h
  6. +1
    -1
      src/lib/cue.h
  7. +1
    -1
      src/lib/cue_parse.y
  8. +1
    -1
      src/lib/cue_parse_prefix.h
  9. +1
    -1
      src/lib/cue_print.c
  10. +1
    -1
      src/lib/cue_scan.l
  11. +1
    -1
      src/lib/cuefile.c
  12. +1
    -1
      src/lib/cuefile.h
  13. +1
    -1
      src/lib/time.c
  14. +1
    -1
      src/lib/time.h
  15. +1
    -1
      src/lib/toc.h
  16. +1
    -1
      src/lib/toc_parse.y
  17. +1
    -1
      src/lib/toc_parse_prefix.h
  18. +1
    -1
      src/lib/toc_print.c
  19. +1
    -1
      src/lib/toc_scan.l
  20. +1
    -1
      src/tools/cuebreakpoints.c
  21. +1
    -1
      src/tools/cueconvert.c
  22. +1
    -1
      src/tools/cueprint.c

+ 1
- 1
README Ver arquivo

@@ -1,6 +1,6 @@
cuetools - cue and toc file parsers and utilities cuetools - cue and toc file parsers and utilities


Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen


cuetools is a set of utilities for working with Cue Sheet (cue) and Table of cuetools is a set of utilities for working with Cue Sheet (cue) and Table of
Contents (toc) files. Contents (toc) files.


+ 1
- 1
src/lib/cd.c Ver arquivo

@@ -1,7 +1,7 @@
/* /*
* cd.c -- cd functions * cd.c -- cd functions
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




+ 1
- 1
src/lib/cd.h Ver arquivo

@@ -1,7 +1,7 @@
/* /*
* cd.h -- cd structure * cd.h -- cd structure
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




+ 1
- 1
src/lib/cdtext.c Ver arquivo

@@ -1,7 +1,7 @@
/* /*
* cdtext.c -- CD-TEXT data structure and functions * cdtext.c -- CD-TEXT data structure and functions
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




+ 1
- 1
src/lib/cdtext.h Ver arquivo

@@ -1,7 +1,7 @@
/* /*
* cdtext.h -- CD-TEXT declarations * cdtext.h -- CD-TEXT declarations
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




+ 1
- 1
src/lib/cue.h Ver arquivo

@@ -1,7 +1,7 @@
/* /*
* cue.h -- cue function declarations * cue.h -- cue function declarations
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




+ 1
- 1
src/lib/cue_parse.y Ver arquivo

@@ -2,7 +2,7 @@
/* /*
* cue_parse.y -- parser for cue files * cue_parse.y -- parser for cue files
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




+ 1
- 1
src/lib/cue_parse_prefix.h Ver arquivo

@@ -2,7 +2,7 @@
* cue_parse_prefix.h -- yacc symbol redefinitions (for cue parser) * cue_parse_prefix.h -- yacc symbol redefinitions (for cue parser)
* *
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




+ 1
- 1
src/lib/cue_print.c Ver arquivo

@@ -1,7 +1,7 @@
/* /*
* cue_print.y -- print cue file * cue_print.y -- print cue file
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




+ 1
- 1
src/lib/cue_scan.l Ver arquivo

@@ -2,7 +2,7 @@
/* /*
* cue_scan.l -- lexer for cue files * cue_scan.l -- lexer for cue files
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




+ 1
- 1
src/lib/cuefile.c Ver arquivo

@@ -1,7 +1,7 @@
/* /*
* cuefile.c -- cue/toc functions * cuefile.c -- cue/toc functions
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




+ 1
- 1
src/lib/cuefile.h Ver arquivo

@@ -1,7 +1,7 @@
/* /*
* cuefile.h -- cue/toc public declarations * cuefile.h -- cue/toc public declarations
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




+ 1
- 1
src/lib/time.c Ver arquivo

@@ -1,7 +1,7 @@
/* /*
* time.c -- time functions * time.c -- time functions
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




+ 1
- 1
src/lib/time.h Ver arquivo

@@ -1,7 +1,7 @@
/* /*
* time.h -- time declarations * time.h -- time declarations
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




+ 1
- 1
src/lib/toc.h Ver arquivo

@@ -1,7 +1,7 @@
/* /*
* toc.h -- toc function declarations * toc.h -- toc function declarations
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




+ 1
- 1
src/lib/toc_parse.y Ver arquivo

@@ -2,7 +2,7 @@
/* /*
* toc_parse.y -- parser for toc files * toc_parse.y -- parser for toc files
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




+ 1
- 1
src/lib/toc_parse_prefix.h Ver arquivo

@@ -1,7 +1,7 @@
/* /*
* toc_parse_prefix.h -- yacc symbol redefinitions (for toc parser) * toc_parse_prefix.h -- yacc symbol redefinitions (for toc parser)
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




+ 1
- 1
src/lib/toc_print.c Ver arquivo

@@ -1,7 +1,7 @@
/* /*
* toc_print.c -- print toc file * toc_print.c -- print toc file
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




+ 1
- 1
src/lib/toc_scan.l Ver arquivo

@@ -2,7 +2,7 @@
/* /*
* toc_scan.l -- lexer for toc files * toc_scan.l -- lexer for toc files
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




+ 1
- 1
src/tools/cuebreakpoints.c Ver arquivo

@@ -1,7 +1,7 @@
/* /*
* cuebreakpoints.c -- print track break points * cuebreakpoints.c -- print track break points
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




+ 1
- 1
src/tools/cueconvert.c Ver arquivo

@@ -1,7 +1,7 @@
/* /*
* cueconvert.c -- convert between cue/toc formats * cueconvert.c -- convert between cue/toc formats
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




+ 1
- 1
src/tools/cueprint.c Ver arquivo

@@ -1,7 +1,7 @@
/* /*
* cueprint.c -- print cd information based on a template * cueprint.c -- print cd information based on a template
* *
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen
* For license terms, see the file COPYING in this distribution. * For license terms, see the file COPYING in this distribution.
*/ */




Carregando…
Cancelar
Salvar