* Pointer to new Command
*/
static struct Command *
-command_create(const struct OperCommandHash *tab, char *param, const char *irc_nick,
+command_create(const struct OperCommandHash *tab, const char *param, const char *irc_nick,
const struct ChannelConf *target)
{
struct Command *command = xcalloc(sizeof(*command));
*
*/
void
-command_parse(char *command, const struct ChannelConf *target, const char *source_p)
+command_parse(const char *command, const struct ChannelConf *target, const char *source_p)
{
char *param; /* Parsed parameters */
static const struct OperCommandHash COMMAND_TABLE[] =
extern void command_init(void);
extern void command_userhost(const char *);
extern void command_timer(void);
-extern void command_parse(char *, const struct ChannelConf *, const char *);
+extern void command_parse(const char *, const struct ChannelConf *, const char *);
#endif