Merge commit 'upstream/1.7.2p2'
[debian/sudo] / insults.h
1 /*
2  * Copyright (c) 1994-1996, 1998-1999, 2004
3  *      Todd C. Miller <Todd.Miller@courtesan.com>
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16  *
17  * $Sudo: insults.h,v 1.47 2008/11/09 14:13:12 millert Exp $
18  */
19
20 #ifndef _SUDO_INSULTS_H
21 #define _SUDO_INSULTS_H
22
23 #if defined(HAL_INSULTS) || defined(GOONS_INSULTS) || defined(CLASSIC_INSULTS) || defined(CSOPS_INSULTS)
24
25 /*
26  * Use one or more set of insults as determined by configure
27  */
28
29 char *insults[] = {
30
31 # ifdef HAL_INSULTS
32 #  include "ins_2001.h"
33 # endif
34
35 # ifdef GOONS_INSULTS
36 #  include "ins_goons.h"
37 # endif
38
39 # ifdef CLASSIC_INSULTS
40 #  include "ins_classic.h"
41 # endif
42
43 # ifdef CSOPS_INSULTS
44 #  include "ins_csops.h"
45 # endif
46
47     (char *) 0
48
49 };
50
51 /*
52  * How may I insult you?  Let me count the ways...
53  */
54 #define NOFINSULTS (sizeof(insults) / sizeof(insults[0]) - 1)
55
56 /*
57  * return a pseudo-random insult.
58  */
59 #define INSULT          (insults[time(NULL) % NOFINSULTS])
60
61 #endif /* HAL_INSULTS || GOONS_INSULTS || CLASSIC_INSULTS || CSOPS_INSULTS */
62
63 #endif /* _SUDO_INSULTS_H */