]> jfr.im git - irc/quakenet/newserv.git/blob - xsb/xsb.h
Fix all current printf style warnings, including a bug in Q's op/voice commands.
[irc/quakenet/newserv.git] / xsb / xsb.h
1 #ifndef __XSB_H
2 #define __XSB_H
3
4 #include "../parser/parser.h"
5
6 void xsb_addcommand(const char *name, const int maxparams, CommandHandler handler);
7 void xsb_delcommand(const char *name, CommandHandler handler);
8 void xsb_command(const char *command, const char *format, ...) __attribute__ ((format (printf, 2, 3)));
9
10 #endif