Blame


1 d23d2886 2023-07-30 op /* $Id: irc.h,v 1.1.1.1 2007/01/11 15:55:54 dhartmei Exp $ */
2 d23d2886 2023-07-30 op
3 d23d2886 2023-07-30 op #ifndef _IRC_H_
4 d23d2886 2023-07-30 op #define _IRC_H_
5 d23d2886 2023-07-30 op
6 d23d2886 2023-07-30 op void irc_recv(const char *, unsigned, int, int);
7 d23d2886 2023-07-30 op void irc_send_notice(int, const char *, ...);
8 d23d2886 2023-07-30 op void irc_send_code(int, const char *, const char *, const char *,
9 d23d2886 2023-07-30 op const char *, ...);
10 d23d2886 2023-07-30 op void irc_send_msg(int, const char *, const char *, const char *);
11 d23d2886 2023-07-30 op void irc_send_join(int, const char *, const char *);
12 d23d2886 2023-07-30 op void irc_send_part(int, const char *, const char *);
13 d23d2886 2023-07-30 op
14 d23d2886 2023-07-30 op extern char irc_pass[256];
15 d23d2886 2023-07-30 op extern char irc_ident[256];
16 d23d2886 2023-07-30 op extern char irc_nick[256];
17 d23d2886 2023-07-30 op extern char irc_channel[256];
18 d23d2886 2023-07-30 op extern int in_irc_channel;
19 d23d2886 2023-07-30 op
20 d23d2886 2023-07-30 op #endif