1 /*
2  *  Copyright (C) 1996-2017 Edward F. Valeev and Justin T. Fermann
3  *
4  *  This file is part of Libint.
5  *
6  *  Libint is free software: you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation, either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  Libint is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with Libint.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  */
20 
21 #ifndef _libint_copyright_h_
22 #define _libint_copyright_h_
23 
24 #include <stdio.h>
25 
copyright(FILE * ofile)26 static inline void copyright(FILE* ofile)
27 {
28   fprintf(ofile,"/*\n");
29   fprintf(ofile," *  Copyright (C) 1996-2017 Edward F. Valeev and Justin T. Fermann\n");
30   fprintf(ofile," *\n");
31   fprintf(ofile," *  This file is part of Libint.\n");
32   fprintf(ofile," *\n");
33   fprintf(ofile," *  Libint is free software: you can redistribute it and/or modify\n");
34   fprintf(ofile," *  it under the terms of the GNU Lesser General Public License as published by\n");
35   fprintf(ofile," *  the Free Software Foundation, either version 3 of the License, or\n");
36   fprintf(ofile," *  (at your option) any later version.\n");
37   fprintf(ofile," *\n");
38   fprintf(ofile," *  Libint is distributed in the hope that it will be useful,\n");
39   fprintf(ofile," *  but WITHOUT ANY WARRANTY; without even the implied warranty of\n");
40   fprintf(ofile," *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n");
41   fprintf(ofile," *  GNU Lesser General Public License for more details.\n");
42   fprintf(ofile," *\n");
43   fprintf(ofile," *  You should have received a copy of the GNU Lesser General Public License\n");
44   fprintf(ofile," *  along with Libint.  If not, see <http://www.gnu.org/licenses/>.\n");
45   fprintf(ofile," *\n");
46   fprintf(ofile," */\n\n");
47 }
48 
49 #endif
50