Licensing: Update copyright dates for Ian Jackson
[adns] / client / client.h
CommitLineData
aa3ffb57 1/*
2 * clients.h
3 * - useful declarations and definitions for adns client programs
4 */
5/*
45f773b3 6 * This file is part of adns, which is
26e1c3d6 7 * Copyright (C) 1997-2000,2003,2006,2014 Ian Jackson
45f773b3 8 * Copyright (C) 1999-2000,2003,2006 Tony Finch
9 * Copyright (C) 1991 Massachusetts Institute of Technology
10 * (See the file INSTALL for full details.)
aa3ffb57 11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
7f8bbe29 14 * the Free Software Foundation; either version 3, or (at your option)
aa3ffb57 15 * any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
8c09a4c6 23 * along with this program; if not, write to the Free Software Foundation.
aa3ffb57 24 */
25
26#ifndef CLIENT_H_INCLUDED
27#define CLIENT_H_INCLUDED
28
45f773b3 29#define ADNS_VERSION_STRING "1.2"
aa3ffb57 30
31#define COPYRIGHT_MESSAGE \
26e1c3d6 32 "Copyright (C) 1997-2000,2003,2006,2014 Ian Jackson\n" \
45f773b3 33 "Copyright (C) 1999-2000,2003,2006 Tony Finch\n" \
34 "Copyright (C) 1991 Massachusetts Institute of Technology\n" \
aa3ffb57 35 "This is free software; see the source for copying conditions. There is NO\n" \
36 "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
37
38#define VERSION_MESSAGE(program) \
39 program " (GNU adns) " ADNS_VERSION_STRING "\n\n" COPYRIGHT_MESSAGE
40
41#define VERSION_PRINT_QUIT(program) \
42 if (fputs(VERSION_MESSAGE(program),stdout) == EOF || \
43 fclose(stdout)) { \
44 perror(program ": write version message"); \
45 quitnow(-1); \
46 } \
47 quitnow(0);
48
49void quitnow(int rc) NONRETURNING;
50
51#endif