blob: f5fb8fb5519be5f38242f9fce6768559b4ba8d3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef COMMANDS_H
#define COMMANDS_H
struct commands {
char *verb;
void (*action)(char *);
void (*flush)(void);
} ;
extern int commands(buffer *,struct commands *);
#endif
|