File: commands.h

package info (click to toggle)
rblsmtpd 0.70-5
  • links: PTS
  • area: non-free
  • in suites: potato
  • size: 464 kB
  • ctags: 274
  • sloc: ansic: 1,969; makefile: 370; sh: 286
file content (12 lines) | stat: -rw-r--r-- 146 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef COMMANDS_H
#define COMMANDS_H

struct commands {
  char *verb;
  void (*action)();
  void (*flush)();
} ;

extern int commands();

#endif