X-Git-Url: https://jfr.im/git/irc/quakenet/newserv.git/blobdiff_plain/8c7baf9e90af4216ce1bc87a8b3515e5a6cfd940..3898f97325dbed800d4b424e68a0c2858b8d8be7:/helpmod2/helpmod.h?ds=sidebyside diff --git a/helpmod2/helpmod.h b/helpmod2/helpmod.h index b40dee57..8b56ade4 100644 --- a/helpmod2/helpmod.h +++ b/helpmod2/helpmod.h @@ -51,12 +51,12 @@ extern time_t helpmod_startup_time; void hcommit_modes(void); -void helpmod_reply(huser *target, channel* returntype, const char *message, ... ); +void helpmod_reply(huser *target, channel* returntype, const char *message, ... ) __attribute__ ((format (printf, 3, 4))); -void helpmod_message_channel_long(hchannel *hchan, const char *message, ...); -void helpmod_message_channel(hchannel *hchan, const char *message, ...); +void helpmod_message_channel_long(hchannel *hchan, const char *message, ...) __attribute__ ((format (printf, 2, 3))); +void helpmod_message_channel(hchannel *hchan, const char *message, ...) __attribute__ ((format (printf, 2, 3))); -void helpmod_kick(hchannel *hchan, huser *target, const char *reason, ...); +void helpmod_kick(hchannel *hchan, huser *target, const char *reason, ...) __attribute__ ((format (printf, 3, 4))); void helpmod_invite(hchannel *, huser *);