2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 01:49:11 +00:00
sudo/insults.h

72 lines
1.6 KiB
C
Raw Normal View History

1993-11-28 07:45:01 +00:00
/*
1998-09-17 16:27:15 +00:00
* CU sudo version 1.5.7
1993-11-28 07:45:01 +00:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 1, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
1996-09-08 00:21:42 +00:00
* Please send bugs, changes, problems to sudo-bugs@courtesan.com
1995-04-09 22:58:55 +00:00
*
* $Id$
1993-11-28 07:45:01 +00:00
*/
1994-05-25 01:25:40 +00:00
#ifndef _SUDO_INSULTS_H
#define _SUDO_INSULTS_H
#ifdef USE_INSULTS
#if !defined(HAL_INSULTS) && !defined(GOONS_INSULTS) && !defined(CLASSIC_INSULTS)
# define CLASSIC_INSULTS
1996-08-25 17:33:49 +00:00
# define CSOPS_INSULTS
#endif
1993-11-28 07:45:01 +00:00
/*
* Use one or more set of insults as defined in options.h.
1993-11-28 07:45:01 +00:00
*/
char *insults[] = {
# ifdef HAL_INSULTS
# include "ins_2001.h"
# endif
# ifdef GOONS_INSULTS
# include "ins_goons.h"
# endif
# ifdef CLASSIC_INSULTS
# include "ins_classic.h"
1995-09-01 03:52:32 +00:00
# endif
# ifdef CSOPS_INSULTS
# include "ins_csops.h"
# endif
(char *) 0
};
/*
* How may I insult you? Let me count the ways...
*/
#define NOFINSULTS (sizeof(insults) / sizeof(insults[0]) - 1)
1994-02-09 03:48:58 +00:00
1993-11-28 07:45:01 +00:00
/*
* return a pseudo-random insult.
1993-11-28 07:45:01 +00:00
*/
#define INSULT (insults[time(NULL) % NOFINSULTS])
#endif /* USE_INSULTS */
#endif /* _SUDO_INSULTS_H */