1 /* 2 * clients.h 3 * - useful declarations and definitions for adns client programs 4 */ 5 /* 6 * This file is 7 * Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk> 8 * 9 * It is part of adns, which is 10 * Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk> 11 * Copyright (C) 1999-2000 Tony Finch <dot@dotat.at> 12 * 13 * This program is free software; you can redistribute it and/or modify 14 * it under the terms of the GNU General Public License as published by 15 * the Free Software Foundation; either version 2, or (at your option) 16 * any later version. 17 * 18 * This program is distributed in the hope that it will be useful, 19 * but WITHOUT ANY WARRANTY; without even the implied warranty of 20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 21 * GNU General Public License for more details. 22 * 23 * You should have received a copy of the GNU General Public License 24 * along with this program; if not, write to the Free Software Foundation, 25 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 26 */ 27 28 #ifndef CLIENT_H_INCLUDED 29 #define CLIENT_H_INCLUDED 30 31 #define ADNS_VERSION_STRING "1.0" 32 33 #define COPYRIGHT_MESSAGE \ 34 "Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk>\n" \ 35 "Copyright (C) 1999-2000 Tony Finch <dot@dotat.at>\n" \ 36 "This is free software; see the source for copying conditions. There is NO\n" \ 37 "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" 38 39 #define VERSION_MESSAGE(program) \ 40 program " (GNU adns) " ADNS_VERSION_STRING "\n\n" COPYRIGHT_MESSAGE 41 42 #define VERSION_PRINT_QUIT(program) \ 43 if (fputs(VERSION_MESSAGE(program),stdout) == EOF || \ 44 fclose(stdout)) { \ 45 perror(program ": write version message"); \ 46 quitnow(-1); \ 47 } \ 48 quitnow(0); 49 50 void quitnow(int rc) NONRETURNING; 51 52 #endif 53