Blame


1 d23d2886 2023-07-30 op #ifndef _IRC_H_
2 d23d2886 2023-07-30 op #define _IRC_H_
3 d23d2886 2023-07-30 op
4 d23d2886 2023-07-30 op void irc_recv(const char *, unsigned, int, int);
5 d23d2886 2023-07-30 op void irc_send_notice(int, const char *, ...);
6 d23d2886 2023-07-30 op void irc_send_code(int, const char *, const char *, const char *,
7 d23d2886 2023-07-30 op const char *, ...);
8 d23d2886 2023-07-30 op void irc_send_msg(int, const char *, const char *, const char *);
9 d23d2886 2023-07-30 op void irc_send_join(int, const char *, const char *);
10 d23d2886 2023-07-30 op void irc_send_part(int, const char *, const char *);
11 d23d2886 2023-07-30 op
12 d23d2886 2023-07-30 op extern char irc_pass[256];
13 d23d2886 2023-07-30 op extern char irc_ident[256];
14 d23d2886 2023-07-30 op extern char irc_nick[256];
15 d23d2886 2023-07-30 op extern char irc_channel[256];
16 d23d2886 2023-07-30 op extern int in_irc_channel;
17 d23d2886 2023-07-30 op
18 d23d2886 2023-07-30 op #endif