s/qmail 4.3.21
Next generation secure email transport
Loading...
Searching...
No Matches
commands.h
Go to the documentation of this file.
1#ifndef COMMANDS_H
2#define COMMANDS_H
3#include "buffer.h"
4
5struct commands {
6 char *text;
7 void (*fun)();
8 void (*flush)();
9} ;
10
11int commands(buffer *,struct commands *);
12
13#endif
int commands(buffer *, struct commands *)
Definition commands.c:9
void(* fun)()
Definition commands.h:7
char * text
Definition commands.h:6
void(* flush)()
Definition commands.h:8