Upstream qmail 1.03
[qmail] / commands.h
diff --git a/commands.h b/commands.h
new file mode 100644 (file)
index 0000000..da05a8d
--- /dev/null
@@ -0,0 +1,12 @@
+#ifndef COMMANDS_H
+#define COMMANDS_H
+
+struct commands {
+  char *text;
+  void (*fun)();
+  void (*flush)();
+} ;
+
+extern int commands();
+
+#endif