view src/lmtp/commands.h @ 17397:f373df52082a

treewide - mass cleanup of 0 used to end a settings list This also includes a change to the perl script which generates the all-settings.c file. Signed-off-by: Phil Carmody <phil@dovecot.fi>
author Phil Carmody <phil@dovecot.fi>
date Tue, 27 May 2014 21:17:34 +0300
parents 1af2a0497f3f
children 297192cfbd37
line wrap: on
line source

#ifndef COMMANDS_H
#define COMMANDS_H

struct client;

int cmd_lhlo(struct client *client, const char *args);
int cmd_mail(struct client *client, const char *args);
int cmd_rcpt(struct client *client, const char *args);
int cmd_quit(struct client *client, const char *args);
int cmd_vrfy(struct client *client, const char *args);
int cmd_rset(struct client *client, const char *args);
int cmd_noop(struct client *client, const char *args);
int cmd_data(struct client *client, const char *args);
int cmd_xclient(struct client *client, const char *args);

#endif