mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
11 lines
234 B
C
11 lines
234 B
C
#ifndef JABBER_H
|
|
#define JABBER_H
|
|
|
|
void jabber_connect(char *user, char *passwd);
|
|
void jabber_disconnect(void);
|
|
void jabber_roster_request(void);
|
|
void jabber_process_events(void);
|
|
void jabber_send(char *msg, char *recipient);
|
|
|
|
#endif
|