From: Alexander Barton Date: Sun, 24 Feb 2013 15:14:13 +0000 (+0100) Subject: Add new _IRC_ARGC_BETWEEN_OR_RETURN_ macro to irc-macros.h X-Git-Tag: rel-21-rc1~126 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=883a8fa6f185033102748be6dde1b386ddef54ac;p=ngircd Add new _IRC_ARGC_BETWEEN_OR_RETURN_ macro to irc-macros.h --- diff --git a/src/ngircd/irc-macros.h b/src/ngircd/irc-macros.h index bd63ec49..87a60885 100644 --- a/src/ngircd/irc-macros.h +++ b/src/ngircd/irc-macros.h @@ -39,6 +39,17 @@ if (Req->argc < Min) \ return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG, \ Client_ID(Client), Req->command); +/** + * Make sure that number of passed parameters is in between Min and Max. + * + * If there aren't at least Min parameters or if there are more than Max + * parameters, send an error to the client and return from the function. + */ +#define _IRC_ARGC_BETWEEN_OR_RETURN_(Client, Req, Min, Max) \ +if (Req->argc < Min || Req->argc > Max) \ + return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG, \ + Client_ID(Client), Req->command); + /** * Get sender of an IRC command. *