This repository has been archived on 2024-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
probotic/include/irc.h

14 lines
232 B
C
Raw Normal View History

#ifndef IRC_H_
#include <libircclient.h>
extern irc_session_t * session;
extern irc_callbacks_t callbacks;
extern char const * channel;
2023-08-02 15:27:59 -04:00
DELC int init(char const * username, char const * server, int port);
#define IRC_H_
#endif