28#ifndef CLIENT_H_INCLUDED
29#define CLIENT_H_INCLUDED
31#define ADNS_VERSION_STRING "1.0"
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"
39#define VERSION_MESSAGE(program) \
40 program " (GNU adns) " ADNS_VERSION_STRING "\n\n" COPYRIGHT_MESSAGE
42#define VERSION_PRINT_QUIT(program) \
43 if (fputs(VERSION_MESSAGE(program),stdout) == EOF || \
45 perror(program ": write version message"); \
void quitnow(int rc) NONRETURNING