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

16 lines
207 B
C
Raw Normal View History

#ifndef IRC_H_
#include <libircclient.h>
2023-08-02 16:37:28 -04:00
#include "parse.h"
extern irc_session_t * session;
extern irc_callbacks_t callbacks;
2023-08-02 16:38:32 -04:00
extern char * current_username;
2023-08-03 02:16:39 -04:00
DECL int init(void);
2023-08-02 15:27:59 -04:00
#define IRC_H_
#endif