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

15 lines
209 B
C
Raw Normal View History

2023-08-04 11:13:47 -04:00
#ifndef IRC_H_
#include <libircclient.h>
#include "parse.h"
VARDECL irc_session_t * session;
VARDECL irc_callbacks_t callbacks;
VARDECL char * current_username;
DECL int init(void);
#define IRC_H_
#endif