mess822x 1.25
mess822x
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 *verb;
7 void (*action)(char *);
8 void (*flush)();
9} ;
10
11
12extern int commands(buffer *,struct commands *);
13
14#endif
int commands(buffer *, struct commands *)
Definition commands.c:9
void(* action)(char *)
Definition commands.h:7
void(* flush)()
Definition commands.h:8
char * verb
Definition commands.h:6