Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
BitchX
GitHub Repository: BitchX/BitchX1.3
Path: blob/master/include/funny.h
1069 views
1
/*
2
* funny.h: header for funny.c
3
*
4
* written by michael sandrof
5
*
6
* copyright(c) 1990
7
*
8
* see the copyright file, or do a help ircii copyright
9
*
10
* @(#)$Id: funny.h 3 2008-02-25 09:49:14Z keaston $
11
*/
12
13
#ifndef __funny_h_
14
#define __funny_h_
15
16
#define FUNNY_PUBLIC 1
17
#define FUNNY_PRIVATE 2
18
#define FUNNY_TOPIC 4
19
#define FUNNY_WIDE 8
20
#define FUNNY_USERS 16
21
#define FUNNY_NAME 32
22
23
void set_funny_flags (int, int, int);
24
void funny_set_ignore_mode (void);
25
int funny_is_ignore_channel (void);
26
void funny_set_ignore_channel (char *);
27
void funny_match (char *);
28
void reinstate_user_modes (void);
29
void funny_print_widelist (void);
30
void funny_list (char *, char **);
31
void funny_mode (char *, char **);
32
void funny_namreply (char *, char **);
33
void update_user_mode (char *);
34
35
#endif /* __funny_h_ */
36
37