history/cfg.h

17 lines
297 B
C
Raw Normal View History

2023-08-17 04:46:35 +00:00
//Settings
#define NICK "historybot"
#define HOST "localhost"
2023-08-01 19:42:36 +00:00
#define PORT 6667
2023-08-17 04:46:35 +00:00
#define DIR "./"
2023-08-01 19:42:36 +00:00
char *channels[] = {"#channel"};
//Output
2023-08-17 04:46:35 +00:00
#define FORMAT_TXT "<%s> %s\n"
2023-08-01 19:42:36 +00:00
#define FORMAT_HTML "[%s] %s<br>\n"
2023-08-17 04:46:35 +00:00
#define FORMAT_AWK "%s %s\n"
#define FORMAT FORMAT_AWK
2023-08-01 19:42:36 +00:00
2023-08-17 04:46:35 +00:00
//File ext
#define EXT ".awk"