Blame


1 d23d2886 2023-07-30 op #ifndef _ICB_H_
2 d23d2886 2023-07-30 op #define _ICB_H_
3 d23d2886 2023-07-30 op
4 d23d2886 2023-07-30 op void icb_init(void);
5 d23d2886 2023-07-30 op void icb_recv(const char *, unsigned, int, int);
6 d23d2886 2023-07-30 op void icb_send_login(int, const char *, const char *, const char *);
7 d23d2886 2023-07-30 op void icb_send_openmsg(int, const char *);
8 d23d2886 2023-07-30 op void icb_send_privmsg(int, const char *, const char *);
9 d23d2886 2023-07-30 op void icb_send_group(int, const char *);
10 d23d2886 2023-07-30 op void icb_send_list(int);
11 d23d2886 2023-07-30 op void icb_send_names(int, const char *);
12 d23d2886 2023-07-30 op void icb_send_whois(int, const char *);
13 d23d2886 2023-07-30 op void icb_send_who(int, const char *);
14 d23d2886 2023-07-30 op void icb_send_pass(int, const char *);
15 d23d2886 2023-07-30 op void icb_send_topic(int, const char *);
16 d23d2886 2023-07-30 op void icb_send_boot(int, const char *);
17 d23d2886 2023-07-30 op void icb_send_name(int, const char *);
18 d23d2886 2023-07-30 op void icb_send_raw(int, const char *);
19 d23d2886 2023-07-30 op void icb_send_noop(int);
20 d23d2886 2023-07-30 op
21 d23d2886 2023-07-30 op extern int icb_logged_in;
22 d23d2886 2023-07-30 op
23 d23d2886 2023-07-30 op #endif