blob: af099fd0b3fe8e001e8376b3b262de90f7445cc3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef ESPIK_IRC_H
#define ESPIK_IRC_H
typedef struct
{
char* buf;
int len;
} buf_t;
unsigned short sendmsg_len (char*);
char* irc_send (char*);
char* irc_privmsg (char*, char *);
/*char* irc_action (char *, char *);*/
char* irc_join (char*, char*);
char* irc_part (char*, char*);
char* irc_quit (char*, char*);
char* irc_raw (char*, char*);
char* irc_nick(char*, char*);
char** separate_commandline (char*);
buf_t make_buffer(int);
/*void string_upper (char*);*/
/*Ecore_Con_Server* irc_connect (char*, int);*/
/*void irc_disconnect (Ecore_Con_Server*);*/
#endif /* ESPIK_IRC_H */
|