Changeset 617
- Timestamp:
- 12/21/07 20:35:38 (1 year ago)
- Files:
-
- trunk/src/birth.c (modified) (1 diff)
- trunk/src/cmd3.c (modified) (1 diff)
- trunk/src/files.c (modified) (1 diff)
- trunk/src/init1.c (modified) (1 diff)
- trunk/src/init2.c (modified) (1 diff)
- trunk/src/object2.c (modified) (1 diff)
- trunk/src/variable.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/birth.c
r568 r617 1 /* File: birth.c */ 2 3 /* 1 /* 2 * File: birth.c 3 * Purpose: Character creation 4 * 4 5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 9 */ 10 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 17 */ 11 18 #include "angband.h" 12 19 #include "cmds.h" trunk/src/cmd3.c
r607 r617 1 /* File: cmd3.c */ 2 3 /* 1 /* 2 * File: cmd3.c 3 * Purpose: Miscellaneous queries 4 * 4 5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 9 */ 10 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 17 */ 11 18 #include "angband.h" 12 19 trunk/src/files.c
r570 r617 1 /* File: files.c */2 3 1 /* 2 * File: files.c 3 * Purpose: Various file-related activities, poorly organised 4 * 4 5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 9 17 */ 10 11 18 #include "angband.h" 12 19 #include "cmds.h" trunk/src/init1.c
r564 r617 1 /* File: init1.c */ 2 3 /* 1 /* 2 * File: init1.c 3 * Purpose: Parsing the lib/edit/ files into data structures. 4 * 4 5 * Copyright (c) 1997 Ben Harrison 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 9 17 */ 10 18 #include "angband.h" trunk/src/init2.c
r541 r617 1 /* File: init2.c */2 3 4 /*1 /* 2 * File: init2.c 3 * Purpose: Various game initialistion routines 4 * 5 5 * Copyright (c) 1997 Ben Harrison 6 6 * 7 * This software may be copied and distributed for educational, research, 8 * and not for profit purposes provided that this copyright and statement 9 * are included in all such copies. Other copyrights may also apply. 10 */ 11 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 17 */ 12 18 #include "angband.h" 13 19 trunk/src/object2.c
r610 r617 1 /* File: object2.c */ 2 3 /* 1 /* 2 * File: object2.c 3 * Purpose: Object list maintenance and other object utilities 4 * 4 5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 9 */ 10 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 17 */ 11 18 #include "angband.h" 12 19 trunk/src/variable.c
r556 r617 1 /* File: variable.c */ 2 3 /* 1 /* 2 * File: variable.c 3 * Purpose: Various global variables 4 * 4 5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 9 */ 10 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 17 */ 11 18 #include "angband.h" 12 19 … … 15 22 * Hack -- Link a copyright message into the executable 16 23 */ 17 c ptrcopyright =18 "Copyright (c) 19 97 Ben Harrison, James E. Wilson, Robert A. Keoneke\n"24 const char *copyright = 25 "Copyright (c) 1987-2007 Angband contributors.\n" 19 26 "\n" 20 "This software may be copied and distributed for educational, research,\n" 21 "and not for profit purposes provided that this copyright and statement\n" 22 "are included in all such copies. Other copyrights may also apply.\n"; 27 "This work is free software; you can redistribute it and/or modify it\n" 28 "under the terms of either:\n" 29 "\n" 30 "a) the GNU General Public License as published by the Free Software\n" 31 " Foundation, version 2, or\n" 32 "\n" 33 "b) the Angband licence:\n" 34 " This software may be copied and distributed for educational, research,\n" 35 " and not for profit purposes provided that this copyright and statement\n" 36 " are included in all such copies. Other copyrights may also apply.\n"; 23 37 24 38
