mirror of
				https://github.com/osmarks/ngircd.git
				synced 2025-10-31 22:13:00 +00:00 
			
		
		
		
	Add new _IRC_ARGC_BETWEEN_OR_RETURN_ macro to irc-macros.h
This commit is contained in:
		| @@ -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. | ||||
|  * | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Alexander Barton
					Alexander Barton